- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
private void увеличитьToolStripMenuItem_Click(object sender, EventArgs e)
{
panel1.Height = panel1.Height * 2;
panel1.Width = panel1.Width * 2;
graph = panel1.CreateGraphics();
graph.Clear(Color.White);
if (Setka)
{
DrawSetka();
}
foreach (Fig f in figures)
{
f.Masstab = f.Masstab * 2;
f.DrawFigure(graph);
}
resizeScrollBars();
}