WPF button change content size

时间:2020-07-21 14:12:18   收藏:0   阅读:92
<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

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!