多行文本作为 Windows 窗体中的按钮标签
基本上,我正在创建一个椭圆形的按钮。但我的按钮标签太长,无法在一行中显示,因此我想将其分成多行,以便椭圆形按钮看起来不错。
如何在按钮上启用自动换行?
Basically, I am creating a button in an oval shape. But my button label is too long to display in one line, so I wanted to split it into multiple lines so that the oval button looks good.
How do I enable word wrap on a button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
如果你想在VS设计器中将按钮的标签设置为多行文本,可以单击属性字段右侧的“向下箭头”,然后就可以输入多行文本。
我在 VS 2015 中尝试过这个。
If you want to set a button's label to multi-line text inside the VS designer, you can click on the "down arrow" at the right of the property field and then you are able to enter multiple lines of text.
I tried this in VS 2015.
在表单加载时设置标签文本并添加Environment.Newline作为换行符字符串,如下所示:
Set the label text on form load and add Environment.Newline as the newline string, like this:
只需在文本中应分割的位置添加换行符即可。
Just add a newline in the text at the place where it should split.
尝试将“\n”添加到按钮的 Text 属性中要换行的位置。
Try to add "\n" to button's Text property in the places you want to wrap.
有两个选项:
Autosize = true
选项在其上放置一个标签控件。并根据按钮的大小调整其大小。There are two options:
Autosize = true
option. And adjust its size as per the buttons size.您可以使用一个附加属性(例如,
Label
)创建自定义按钮,该属性将出现的“\n”转换为“真正的”换行符(因为 VS 设计器已经 10 年无法做到这一点):一旦您创建了这样的类,您的超级按钮将在项目页面的工具箱中可见,因此您不会失去视觉设计方式。
You can create custom Button with one additional property (say,
Label
) which converts "\n" occurrence into "real" newline (because VS designer cannot do it already 10 years):Once you created such class, your SuperButton will be visible in Toolbox at Project page, so you don't loose visual way of design.
您只需在按钮文本中插入换行符(即 \n)。
例子:
You just need to insert a line break (i.e. \n) in the button text.
Example: