WPF Button No Border No Background

前端 未结 2 892
时光说笑
时光说笑 2021-02-12 19:48

I just need a button so simple that it looks like a TextBlock. Some time ago I saw an answer on SO to style the button based on a static style for a button in a menu but I cann

相关标签:
2条回答
  • 2021-02-12 20:21

    If you want a button that looks like a TextBlock, you can make a button that is a TextBlock.

    <Button Content="I'm a Button; click me">
        <Button.Template>
            <ControlTemplate TargetType="Button">
                <TextBlock Text="{TemplateBinding Content}" />
            </ControlTemplate>
        </Button.Template>
    </Button>
    
    0 讨论(0)
  • 2021-02-12 20:44

    Is it maybe the style used for a button in a ToolBar that you're referring to? The ToolBar control overrides the Button style so they appear flat. You can apply that style to a button like this...

    <Button Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" />
    
    0 讨论(0)
提交回复
热议问题