如何在 WPF 中将标签文本居中?Label HorizontalAlignment="Center" Content="What?" FontSize="25" FontWeight="Bold" Canvas.Top="5"
最佳答案
使用 HorizontalContentAlignment 属性。
样本
<Label HorizontalContentAlignment="Center"/>
关于c# - 如何在 WPF 中将标签文本居中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5315497/