如何在.net Compact Framework 3.5中绘制一条水平线,就像Windows Mobile 6.5中Owner Information
中使用的那个,分隔标题和正文?
答案 0 :(得分:1)
执行此类操作的最简单方法是覆盖Paint
事件:
private const int HORZ_LINE = 10;
private void Form_Paint(object sender, PaintEventArgs e) {
using (Pen p = new Pen(Color.Black)) {
e.Graphics.DrawLine(p, 0, HORZ_LINE, Width, HORZ_LINE);
}
}