Q:用GDI+怎么实现绘制倾斜文字A:Graphics g = this.CreateGraphics();g.RotateTransform(30f);g.DrawString("倾斜ABCabc", this.Font, SystemBrushes.WindowText, 10f, 10f);g.ResetTransform();g.Dispose();g = null; 相关文章: