可能重复:
Cambria Math 大顶部和底部边距
我试图在 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));