说明: VB2010 知识宝库 一.窗体事件 1.打印文字。 方法一:在窗体上打印文字 Dim g As Graphics = Me.CreateGraphics Dim mBrush As New SolidBrush(Color.Red) Dim mFont As New Font("宋体", 18) g.DrawString("测试", mFont, mBrush, 0, 10) (0 为横坐标,10 为纵坐标) 方法二:在窗体上画文字 Dim m As Graphics ···········
<u013725518> 上传 | 大小:393kb