| | |
| | | public partial class UserManagementEditPage : UserControl |
| | | { |
| | | public Action<string, LogInfoType> LogInfo; |
| | | RunSettingPage RunSettingPage = new RunSettingPage(); |
| | | LayoutPage LayoutPage = new LayoutPage(); |
| | | CsvPage CsvPage = new CsvPage(); |
| | | |
| | | public UserManagementEditPage() |
| | | { |
| | | Name = "UserManagementEditPage"; |
| | | Name = "UserManagementEditPage"; |
| | | Text = "用户管理设置"; |
| | | |
| | | InitializeComponent(); |
| | |
| | | private void InitializeComboBox() |
| | | { |
| | | // 添加权限选项 |
| | | comboBoxPermission.Items.Add("管理员"); |
| | | comboBoxPermission.Items.Add("操作员"); |
| | | foreach (var item in Enum.GetValues(typeof(UserPermission))) |
| | | { |
| | | comboBoxPermission.Items.Add(item.ToString()); |
| | | } |
| | | //comboBoxPermission.Items.Add("操作员"); |
| | | |
| | | // 设置默认选择项 |
| | | comboBoxPermission.SelectedIndex = 1; |
| | | comboBoxPermission.SelectedIndex = 0; |
| | | } |
| | | |
| | | private void ClearInputFields() |
| | |
| | | MessageBoxButtons.OK, MessageBoxIcon.Information); |
| | | } |
| | | } |
| | | |
| | | |
| | | } |
| | | } |