更多缩写XAML

时间:2011-09-14 12:46:48

标签: wpf xaml app.xaml

你能否更多地遵守以下代码......

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

在一行?

1 个答案:

答案 0 :(得分:1)

您可以定义

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

作为StaticResource,那么你会有类似的东西,

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

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