public Form1()
 {
     InitializeComponent();
     document = new LinesDocument(Width, Height);
     normalToolStripMenuItem.Checked = true;
     DoubleBuffered = true;
 }
示例#2
0
文件: Form1.cs 项目: AtanasK/VP
 public Form1()
 {
     InitializeComponent();
     document = new LinesDocument(Width, Height);
     normalToolStripMenuItem.Checked = true;
     DoubleBuffered = true;
 }
示例#3
0
文件: Form1.cs 项目: AtanasK/VP
 private void newToolStripMenuItem_Click(object sender, EventArgs e)
 {
     document = new LinesDocument(Width, Height);
     Invalidate(true);
 }
 private void newToolStripMenuItem_Click(object sender, EventArgs e)
 {
     document = new LinesDocument(Width, Height);
     Invalidate(true);
 }