字体竖直的,如下:




而现在的情形是完全倒立,连单个字也是倒立的,烦躁ing

解决方案 »

  1.   

    把drewmode改为自画,并截获DrawItem事件,你就可以设置任意风格了:
    private void tabControl1_DrawItem(object sender, System.Windows.Forms.DrawItemEventArgs e)
      {
       StringFormat drawFormat = new StringFormat();
     
       Brush myBrush = Brushes.Red;
       drawFormat.Alignment = StringAlignment.Near ;
       e.Graphics.DrawString(tabControl1.TabPages[e.Index].Text, e.Font, myBrush, e.Bounds,drawFormat);
     
      }