RaUI/Source/OnLineUpgradeConfig/User/FrmAddBetaUser.cs

38 lines
926 B
C#
Raw Permalink Normal View History

using LiveUpdate;
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 Server.User
{
public partial class FrmAddBetaUser : Form
{
public FrmAddBetaUser()
{
InitializeComponent();
}
private void BtnOK_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.OK;
}
private void DtUserList_OnSelected(object sender, EventArgs e)
{
frmUserList frm = new frmUserList();
frm.LoadDb("", DtUserList.selectId);
if (frm.ShowDialog() == DialogResult.OK)
{
DtUserList.Text = frm.userNickList.Replace("|",",");
DtUserList.selectId = frm.userList;
}
}
}
}