对于.NET ToolStripButton,我可以使用多行"Text"属性吗?

Cor*_*ger 4 .net winforms

我有一个图像工具栏,我想在图像下面的文字标签.文本标签是多个单词的地方,我想垂直堆叠单词.我该怎么做?

Ste*_*bob 7

详细说明Paulo的答案:

你不能在设计时做多线.但在运行时,您可以像这样设置每个ToolStripButton的.Text属性:

ToolStripButton1.Text = "This is " & ControlChars.CrLF & "a button."
Run Code Online (Sandbox Code Playgroud)

这将为您提供文本的多行显示.