新增角色管理功能,初步新增多语言版本功能,更新readme,v1.6.0

This commit is contained in:
dathlin
2017-10-06 13:30:28 +08:00
parent 64e9d1990e
commit 9ed7e378d4
36 changed files with 1899 additions and 123 deletions

View File

@@ -14,6 +14,8 @@ namespace ClientsLibrary
{
public partial class FormRegisterAccount : Form
{
#region Constructor
/// <summary>
/// 实例化对象
/// </summary>
@@ -32,7 +34,9 @@ namespace ClientsLibrary
Factories.Add("总公司");
}
private List<string> Factories = null;
#endregion
#region Form Load
private void FormRegisterAccount_Load(object sender, EventArgs e)
{
@@ -47,7 +51,10 @@ namespace ClientsLibrary
textBox4.Text = (new UserAccount()).ForbidMessage;
}
private NetSimplifyClient net_client = null;
#endregion
#region Register Account
private void userButton_login_Click(object sender, EventArgs e)
{
@@ -76,5 +83,14 @@ namespace ClientsLibrary
MessageBox.Show("注册失败!");
}
}
#endregion
#region Private Members
private List<string> Factories = null; // 分厂信息
private NetSimplifyClient net_client = null; // 服务器数据交换的通信对象
#endregion
}
}