如何扩展 Windows 窗体中的文本 CheckBox 到多行?
How do I extend the text in a Windows Forms CheckBox to more than one line?
您需要使用 \r\n 来添加新行。您可能必须在后面的代码中执行此操作。所以你的代码将是这样的:
\r\n
myLabel.Text = "New\r\nLine\r\nExample";
You need to use \r\n in order to add a new line. You might have to do this in the code behind. So your code would be like this:
首先,您应该将 autosize 属性设置为 False。然后调整框的大小并使用 \r\n 转到下一行。
First you should turn autosize property to False.Then resize the box and use \r\n for going to next line.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
您需要使用
\r\n
来添加新行。您可能必须在后面的代码中执行此操作。所以你的代码将是这样的:You need to use
\r\n
in order to add a new line. You might have to do this in the code behind. So your code would be like this:首先,您应该将 autosize 属性设置为 False。
然后调整框的大小并使用 \r\n 转到下一行。
First you should turn autosize property to False.
Then resize the box and use \r\n for going to next line.