wpf平面按钮

时间:2010-01-14 13:04:06

标签: wpf button flat

如何在wpf中制作按钮平面样式? 我已经尝试过BasedOn属性,但它不起作用。

6 个答案:

答案 0 :(得分:29)

这里使用已经定义的ToolBar按钮样式的更简单的解决方案:

<Button Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}"
        Content="You know I'm flat..." />

答案 1 :(得分:24)

只是为了让你开始:

<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>

然后你有100万个其他方法来做,甚至更改ControlTemplate以完成重新定义按钮

答案 2 :(得分:7)

为了增加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>

答案 3 :(得分:1)

快速解决方案:将按钮嵌入<ToolBar/>

免责声明:将添加工具栏chrome,在某些情况下可能会出现问题。 (感谢Indeera)

答案 4 :(得分:0)

如果你只需要按下按钮&#34;隐形&#34;但是可以突出显示:

bb.Background = new SolidColorBrush(Colors.White); bb.BorderBrush = new SolidColorBrush(Colors.White);

答案 5 :(得分:0)

此来源描述了一些获取扁平按钮的方法:http://thehunk.blogspot.com/2012/01/wpf-flat-button-for-real.html 此处的任何其他答案中似乎都没有提到其中一种方法 - 使用透明度。

<块引用>

要获得这些扁平按钮,您只需设置两个背景 将标准按钮的 BorderBrush 属性设置为 Transparent。这些 按钮还显示本地淡入和淡出效果时 获得焦点或被指向。

NoSuchElementException: Message: Unable to locate element: /html/body/div/c-wiz/div[2]/div/div/div/div/div[2]/form/div/span/span

但是请注意警告:

<块引用>

...当 Windows 使用 Classic 时,这些平面按钮失效 主题或高对比度主题(如您在视频中所见)。

我已经用 glm::vec3 negative(-1.f, -1.f, -1.f); direction = direction * negative; 试过了,效果很好。因此,如果它适合您的主题,这是一种快速而简单的方法。