如何添加URI图像以用作此样式的背景?有可能吗?
使用URI如:" / WpfAPP10; component / Interface.png"
<Style x:Key="mega" BasedOn="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" TargetType="Button" >
<Setter Property="Margin" Value="4"/>
</Style>
答案 0 :(得分:1)
用作
<Style x:Key="mega" BasedOn="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" TargetType="Button" >
<Setter Property="Margin" Value="4"/>
<Setter Property="Background" Value="/WpfAPP10;component/Interface.png"/>
</Style>
或
<Setter Property="Background" Value="Interface.png"/>
或
<Setter Property="Background" Value="pack://application:,,,/WpfAPP10;component/Interface.png""/>
这会将所需的图像设置为背景
答案 1 :(得分:1)
这是有效的。
<Setter Property="Background">
<Setter.Value>
<ImageBrush ImageSource="/uif\yellow.png"/>
</Setter.Value>
</Setter>