变量ps =新的PaperSize(“自定义大小”,XX,YY );
我用PrintDocument打印出来,需要创建一个9.79cm乘14.75cm的页面大小(w )。
e.Graphics.PageUnit = GraphicsUnit.Millimeter; --我想用一个24点的字体,字体titleFont =新字体( STR_Arial,24,FontStyle.Regular );
对吗?
发布于 2010-08-16 01:50:52
,你需要在你的字体构造函数中使用GraphicsUnit.Point。
https://stackoverflow.com/questions/3490067
复制相似问题