diff --git a/csharpDemo/Form2.cs b/csharpDemo/Form2.cs index 320208f933288e3998691f482c912428b54ef0ff..e86217d9f65a074d37abbf90b01d2a82ea57ad75 100644 --- a/csharpDemo/Form2.cs +++ b/csharpDemo/Form2.cs @@ -14,7 +14,9 @@ namespace csharpDemo { public Form2() { + InitializeComponent(); + } private void pictureBox1_Click(object sender, EventArgs e) diff --git a/csharpDemo/Form3.cs b/csharpDemo/Form3.cs new file mode 100644 index 0000000000000000000000000000000000000000..d51556a41b4eece5769cac5b1596248cb4972e02 --- /dev/null +++ b/csharpDemo/Form3.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace csharpDemo +{ + public partial class Form3 : Form + { + public Form3() + { + + InitializeComponent(); + + } + + private void pictureBox1_Click(object sender, EventArgs e) + { + + } + } +}