|
|
От: | vitz | |
| Дата: | 28.07.04 09:25 | ||
| Оценка: | |||
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint (e);
Matrix m = new Matrix();
m.Translate(0,this.Size.Height);
m.Scale(1,-1);
e.Graphics.Transform = m;
// Рисуй на здоровье.
}