private void _customSettingsButton_Click(object sender, EventArgs e)
		{
			_settingsProtectionHelper.LaunchSettingsIfAppropriate(() =>
																	{
																		using (var dlg = new DialogWithSomeSettings())
																		{
																			return dlg.ShowDialog();
																		}
																	});
		}
Ejemplo n.º 2
0
 private void _customSettingsButton_Click(object sender, EventArgs e)
 {
     _settingsProtectionHelper.LaunchSettingsIfAppropriate(() =>
     {
         using (var dlg = new DialogWithSomeSettings())
         {
             return(dlg.ShowDialog());
         }
     });
 }