如题.效果如下:
         label
          竖
          排
          显
          示
          文
          本
        急急急

解决方案 »

  1.   

     label1.Text = "你\n好\n世\n界";
      

  2.   

    .........这你把Label的AutoSize=false;设置宽和高 宽只能显示1个字符..高够显示的下就可以了/.
      

  3.   

    这么有深度的问题lz只肯出10分啊
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;namespace WindowsApplication42
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();            Label L = new Label();
                L.Parent = this;
                //L.Text = ;
                L.Paint += new PaintEventHandler(L_Paint);
            }        void L_Paint(object sender, PaintEventArgs e)
            {
                Label L = (Label)sender;
                L.AutoSize = false;
                String DrawText = "个人让弗格森是个很深入343t4eteages";
                L.Height = (int)e.Graphics.MeasureString(DrawText, L.Font, DrawText.Length, new StringFormat(StringFormatFlags.DirectionVertical)).Height;
                e.Graphics.DrawString(DrawText, L.Font, new SolidBrush(L.ForeColor), new PointF(0, 0), new StringFormat(StringFormatFlags.DirectionVertical));
            }
        }
    }
      

  4.   

    一个label 设置宽只能显示2个字符