更多 缩写 XAML
您可以将以下代码更缩写...
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以定义
为 StaticResource,然后您会得到类似的内容,
同时将此资源放入共享的 ResourceDictionary 中,然后您不需要定义它两次。
You can define
as a StaticResource, then you would have something like,
Also put this resource in a shared ResourceDictionary then you don't need to define it twice.