我试图在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));