使用Windows窗体中的Cambria Math字体的文本会垂直移位

时间:2012-11-12 07:29:56

标签: c# winforms

  

可能重复:
  Cambria Math big top and bottom margin

我试图在Windows窗体的0,0位置绘制文本(字体“Cambria Math”)。但它垂直向下移动到某个位置。 有没有办法在0,0位置正确绘制它?

        ![enter image description here][1]string st = ((char)4574).ToString();
        Font f = new System.Drawing.Font("Cambria Math", 12f);
        Graphics gr = this.CreateGraphics();
        gr.DrawString(st, f, Brushes.Black, new PointF(0, 0));

0 个答案:

没有答案