initial commit for client with c#

This commit is contained in:
2018-12-15 00:29:41 +08:00
parent c43d9a1a75
commit 1655b92d9a
30 changed files with 1836 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
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 StormChat
{
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
}
private void MainForm_Load(object sender, EventArgs e)
{
this.Visible = false;
new LogForm().Show();
}
}
}