2 using System.Collections.Generic;
3 using System.ComponentModel;
8 using System.Windows.Forms;
10 namespace SeciUserInterface.Dialogs.Blocks
18 InitializeComponent();
23 if (String.IsNullOrEmpty(txtName.Text.Trim()))
25 MessageBox.Show(
"Please enter a name for the group.");
29 GroupName = txtName.Text.Trim();
30 DialogResult = DialogResult.OK;
void btnOK_Click(object sender, EventArgs e)