更多 缩写 XAML

发布于 2024-12-04 16:13:19 字数 205 浏览 1 评论 0原文

您可以将以下代码更缩写...

<Button.Tag>
    <BitmapImage UriSource="/WpfApplication1;component/Images/ButtonIcons/ButtonIcon_Sound.png"/>
</Button.Tag>

在一行中吗?

Can you more abbretviate following code...

<Button.Tag>
    <BitmapImage UriSource="/WpfApplication1;component/Images/ButtonIcons/ButtonIcon_Sound.png"/>
</Button.Tag>

in one line?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静赏你的温柔 2024-12-11 16:13:19

您可以定义

"/WpfApplication1;component/Images/ButtonIcons/ButtonIcon_Sound.png"

为 StaticResource,然后您会得到类似的内容,

<BitmapImage UriSource="{StaticResource SoundIcon}"/>

同时将此资源放入共享的 ResourceDictionary 中,然后您不需要定义它两次。

You can define

"/WpfApplication1;component/Images/ButtonIcons/ButtonIcon_Sound.png"

as a StaticResource, then you would have something like,

<BitmapImage UriSource="{StaticResource SoundIcon}"/>

Also put this resource in a shared ResourceDictionary then you don't need to define it twice.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文