wpf image button样式
Posted by-lhc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wpf image button样式相关的知识,希望对你有一定的参考价值。
1:image button样式
<Style x:Key="Button.File" TargetType="Button">
<Setter Property="Cursor" Value="Hand"></Setter>
<Setter Property="Template" >
<Setter.Value>
<ControlTemplate TargetType="Button">
<Image Name="FileImage" Source="/程序集名称;component/images/file.png"/>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter TargetName="FileImage" Property="Source" Value="/程序集名称;component/images/file_over.png"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
2:使用image button样式
<Button Style="{StaticResource Button.File}" Height="30" Width="30" VerticalAlignment="Center" HorizontalAlignment="Center"></Button>
以上是关于wpf image button样式的主要内容,如果未能解决你的问题,请参考以下文章
WPF 让一组 Button 实现 RadioButton 的当前样式效果