如何使用 xaml 将资源对象用作面板的子对象?
假设我的资源字典中有一个 Image 对象,如下所示:
<Image x:Key="Theme_Icon_Microphone" Source="Images/icon_microphone.png"/>
我想在 DockPanel 中使用此对象
<DockPanel>
<!-- My Image object -->
</DockPanel>
Suppose I has an Image object in my Resource Dictionary like this:
<Image x:Key="Theme_Icon_Microphone" Source="Images/icon_microphone.png"/>
I want to use this object in DockPanel
<DockPanel>
<!-- My Image object -->
</DockPanel>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要使用
Image
作为静态资源,因为您只能使用它一次。相反,将BitmapImage
放入资源中并从您的Image
中引用它:Don't use an
Image
as a static resource because you will only be able to use it once. Instead put aBitmapImage
in resources and reference that from yourImage
: