private void betterLinkLabel1_Click(object sender, EventArgs e)
		{
			using(var dlg = new SettingProtectionDialog())
			{
				dlg.ShowDialog();
			}
			UpdateDisplay();
		}
 private void betterLinkLabel1_Click(object sender, EventArgs e)
 {
     using (var dlg = new SettingProtectionDialog())
     {
         dlg.ShowDialog();
     }
     UpdateDisplay();
 }
Exemple #3
0
 private void btnSettingProtectionDialog_Click(object sender, EventArgs e)
 {
     using (var dlg = new SettingProtectionDialog())
         dlg.ShowDialog();
 }