Files
ClientServerProject/ClientsLibrary/AccountSupport/FormRegisterAccount.cs

81 lines
2.7 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using HslCommunication.Enthernet;
using HslCommunication;
using CommonLibrary;
namespace ClientsLibrary
{
public partial class FormRegisterAccount : Form
{
/// <summary>
/// 实例化对象
/// </summary>
/// <param name="factories"></param>
/// <exception cref="ArgumentNullException"></exception>
public FormRegisterAccount(string[] factories)
{
InitializeComponent();
Icon = UserClient.GetFormWindowIcon();
net_client = UserClient.Net_simplify_client;
Factories = new List<string>(factories);
// 根据自身需求是否添加总公司名称
Factories.Add("总公司");
}
private List<string> Factories = null;
private void FormRegisterAccount_Load(object sender, EventArgs e)
{
comboBox1.DataSource = AccountGrade.GetDescription();
comboBox2.DataSource = new string[] { "允许", "不允许" };
comboBox1.SelectedItem = AccountGrade.GetDescription(AccountGrade.Technology);
comboBox2.SelectedItem = "允许";
comboBox_factory.DataSource = Factories.ToArray();
textBox4.Text = (new UserAccount()).ForbidMessage;
}
private NetSimplifyClient net_client = null;
private void userButton_login_Click(object sender, EventArgs e)
{
// 点击了注册,先获取数据
UserAccount account = new UserAccount();
account.UserName = textBox1.Text;
account.Password = textBox2.Text;
account.Factory = comboBox_factory.SelectedItem.ToString();
switch (comboBox1.SelectedIndex)
{
case 0: account.Grade = AccountGrade.SuperAdministrator; break;
case 1: account.Grade = AccountGrade.Admin; break;
case 2: account.Grade = AccountGrade.Technology; break;
default: account.Grade = AccountGrade.General; break;
}
account.LoginEnable = comboBox2.SelectedItem.ToString() == "允许";
account.ForbidMessage = textBox4.Text;
OperateResultString result = net_client.ReadFromServer(CommonHeadCode.SimplifyHeadCode., account.ToJsonString());
if (result.IsSuccess && result.Content == "1")
{
MessageBox.Show("注册成功!");
}
else
{
MessageBox.Show("注册失败!");
}
}
}
}