如何在 wpf 中制作按钮平面样式?我已经尝试过 BasedOn 属性,但它不起作用。
问问题
46226 次
6 回答
40
此处使用已定义的 ToolBar 按钮样式的更简单的解决方案:
<Button Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"
Content="You know I'm flat..." />
于 2013-02-28T14:45:46.453 回答
25
只是为了让你开始:
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Page.Resources>
<Style x:Key="Flat">
<Setter Property="Control.Background" Value="{x:Null}" />
<Setter Property="Control.BorderBrush" Value="{x:Null}" />
<Style.Triggers>
<Trigger Property="Control.IsMouseOver" Value="True">
<Setter Property="Control.Background" Value="{x:Null}" />
<Setter Property="Control.BorderBrush" Value="{x:Null}" />
<Setter Property="Control.FontWeight" Value="Bold" />
</Trigger>
<Trigger Property="Control.IsFocused" Value="True">
<Setter Property="Control.FontWeight" Value="Bold" />
</Trigger>
</Style.Triggers>
</Style>
</Page.Resources>
<StackPanel>
<Button Style="{StaticResource Flat}">Hello</Button>
</StackPanel>
</Page>
然后您还有一百万种其他方法可以做到这一点,甚至更改ControlTemplate
以完成重新定义按钮
于 2010-01-14T13:27:03.530 回答
8
为了增加 Eduardo 的答案,如果厚度设置为 0,则此解决方案会消除任何额外的样式,例如按钮周围的边框。
您可以根据需要添加额外的样式:
<Style x:Key="Flat" TargetType="Button">
<Setter Property="Background" Value="{x:Null}" />
<Setter Property="BorderBrush" Value="{x:Null}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Padding="{TemplateBinding Padding}">
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsKeyboardFocused" Value="true">
</Trigger>
<Trigger Property="IsDefaulted" Value="true">
</Trigger>
<Trigger Property="IsPressed" Value="true">
</Trigger>
<Trigger Property="ToggleButton.IsChecked" Value="true">
</Trigger>
<Trigger Property="IsEnabled" Value="false">
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="{x:Null}" />
<Setter Property="BorderBrush" Value="{x:Null}" />
<Setter Property="FontWeight" Value="Normal" />
</Trigger>
<Trigger Property="IsFocused" Value="True">
<Setter Property="FontWeight" Value="Normal" />
</Trigger>
</Style.Triggers>
</Style>
于 2013-01-20T04:42:06.173 回答
1
快速解决方案:将按钮嵌入<ToolBar/>
免责声明:将添加工具栏镶边,在某些情况下可能是一个问题。(感谢因迪拉)
于 2012-02-21T14:44:36.130 回答
0
如果您只需要使按钮“不可见”但可突出显示:
bb.Background = new SolidColorBrush(Colors.White);
bb.BorderBrush = new SolidColorBrush(Colors.White);
于 2017-11-27T10:14:05.540 回答
0
此来源描述了一些获取平面按钮的方法:http: //thehunk.blogspot.com/2012/01/wpf-flat-button-for-real.html其中一个似乎没有在任何这里的其他答案 - 使用透明度。
要获得这些平面按钮,您只需将标准按钮的 Background 和 BorderBrush 属性都设置为透明。当这些按钮获得焦点或被指向时,它们还会原生地显示淡入和淡出效果。
<Button Background="Transparent" BorderBrush="Transparent" />
但是请注意警告:
...当 Windows 使用经典主题或高对比度主题时,这些平面按钮会失效(从视频中可以看到)。
我已经尝试过使用 aToggleButton
并且效果很好。因此,如果它适合您的主题是一种快速简单的方法。
于 2021-01-15T14:05:04.647 回答