| 12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Net;
- using System.Net.NetworkInformation;
- using System.Text;
- using System.Windows.Forms;
- namespace Y.Test.Views
- {
- public partial class TestWebForm : Form
- {
- public TestWebForm()
- {
- InitializeComponent();
- }
- private void TestWebForm_Load(object sender, EventArgs e)
- {
- }
- private void button1_Click(object sender, EventArgs e)
- {
- }
- }
- }
|