您的位置:首页 > 其它

彻底清除备份域服务器数据元的方法

2011-07-28 23:23 155 查看
protected override void OnPaint(PaintEventArgs e)

{

Graphics g = e.Graphics;

using (Pen bluepen = new Pen(Color.Red, 1))

{

if (ClientRectangle.Height / 20 > 10)

{

for (int y = 0; y < ClientRectangle.Height; y += ClientRectangle.Height / 10)

{

g.DrawLine(bluepen, new Point(0, 0), new Point(ClientRectangle.Width, y));

}

}

}

}





本文出自 “稻草人的技术家园” 博客,转载请与作者联系!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: