WPF button change content size

Posted fred1987

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF button change content size相关的知识,希望对你有一定的参考价值。

<Button Name="button" Content="Hello" Height="100" Width="200" Click="button_Click_2">

    <Button.ContentTemplate>

        <DataTemplate>

            <Viewbox>

                <TextBlock>MyButton</TextBlock>

            </Viewbox>

        </DataTemplate>

    </Button.ContentTemplate>

</Button>

Copy from https://social.msdn.microsoft.com/Forums/vstudio/en-US/188c196e-90d8-4584-bc62-38d7e008cf5c/how-do-i-resize-button-text-upon-button-resize?forum=wpf

 

以上是关于WPF button change content size的主要内容,如果未能解决你的问题,请参考以下文章

WPF自定义Button控件

学习WPF时遇到的问题

WPF学习之button

wpf button变成圆角

wpf groupbox无法动态添加子控件

2021-08-09 WPF控件专题 Button控件详解