TestWebForm.cs 529 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Net;
  6. using System.Net.NetworkInformation;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace Y.Test.Views
  10. {
  11. public partial class TestWebForm : Form
  12. {
  13. public TestWebForm()
  14. {
  15. InitializeComponent();
  16. }
  17. private void TestWebForm_Load(object sender, EventArgs e)
  18. {
  19. }
  20. private void button1_Click(object sender, EventArgs e)
  21. {
  22. }
  23. }
  24. }