我需要按钮控制模板,如图所示。任何人都可以帮助我这样做吗?
答案 0 :(得分:0)
app.xaml中的这段代码
<Application.Resources>
<Style TargetType="{x:Type Button}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid>
<Image Source="DHXMR.jpg" />
<ContentControl Content="{TemplateBinding Content}" HorizontalAlignment="Center" VerticalAlignment="Center" />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Application.Resources>
会显示出类似的按钮:
当然你需要删除白色&#34;按钮&#34;您在链接中提供的示例图片中的文字 - 但我猜你自己可以做到这一点