.net Compact Framework中的分隔符控件

时间:2012-04-11 13:08:22

标签: compact-framework

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

enter image description here

1 个答案:

答案 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);
  }
}