使用Graphics.DrawString(..)或者TextRenderer..::.DrawText ()方法,
求绘制文字时候设置行距的方法,谢谢!
下面的方法可以获取你要写的字符串的高度,宽度,这样你就可以确定下一行从那开始。
Graphics g = e.Graphics;
Font font = new Font("宋体", 20, FontStyle.Bold, GraphicsUnit.Pixel);
SizeF size = g.MeasureString("测试一下,Hello World!", font);
string showStr = "Height:{0},Width:{1},";
MessageBox.Show(string.Format(showStr, size.Height, size.Width));
雷啊,居然还要问电话。。。