コード例 #1
0
 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);
 }
コード例 #4
0
 private void newToolStripMenuItem_Click(object sender, EventArgs e)
 {
     document = new LinesDocument(Width, Height);
     Invalidate(true);
 }