|
|
От: | _Morpheus_ | |
| Дата: | 19.04.07 11:17 | ||
| Оценка: | |||
public class MyControl: Panel
{
public MyControl()
{
SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.Opaque, true);
}
protected override void OnPaint(PaintEventArgs e)
{
e.Graphics.Clear(Color.White);
PaintHorizontalLine(e.Graphics);
PaintVerticalLine(e.Graphics);
PaintTaskWithOutControls(e.Graphics);
}
// ....
}