1

如何在 .net Compact Framework 3.5 中绘制一条水平线,就像Owner Information在 Windows Mobile 6.5 中使用的那样,将标题和正文分开?

在此处输入图像描述

4

1 回答 1

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);
  }
}
于 2012-04-13T02:14:00.023 回答