Expression Blend 中的 Wpf 按钮文本
通常,如果我在 C# Windows 窗体中使用按钮,并且如果按钮文本太长,它将转到下一行。 (例如,非常快乐,快乐将转到下一行)。但是当我在表达式混合中使用 wpf 应用程序时,即使我将自动大小设置为 false,文本也会被截断。 (例如,非常快乐,快乐将被截断)。任何建议将不胜感激。谢谢。
Normally, If i use the button in C# Windows form, and if the button text is too long, it will go to next line. (Eg. Very Happy, Happy will go to next line). But When i use wpf app in expression blend, the text will be truncated even though i set the auto size to false. (Eg. Very Happy, Happy will be truncated). Any advice would be really appreciated. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在按钮内放置一个
TextBlock
并将TextWrapping
属性设置为Wrap
。例子:
You need to place a
TextBlock
inside your button and set theTextWrapping
attribute toWrap
.Example: