C# vertical label in a Windows Forms

前端 未结 9 1424
独厮守ぢ
独厮守ぢ 2020-11-28 11:40

Is it possible to display a label vertically in a Windows Forms?

9条回答
  •  遥遥无期
    2020-11-28 12:17

    I found a way to simply do it without adding code or classes to your project!

    When you create your label, simply add:

    this.label1.text = "V\nE\nR\nT\nI\nC\nA\nL\n";
    

    This worked for me!

提交回复
热议问题