/// <summary>
 /// Raises the <see cref="E:Showing"/> event.
 /// </summary>
 /// <param name="e">The <see cref="IExtendFramework.Controls.AdvancedMessageBox.TaskDialogShowingEventArgs"/> instance containing the event data.</param>
 private static void OnShowing(TaskDialogShowingEventArgs e)
 {
     if (Showing != null)
     {
         Showing(null, e);
     }
 }
Esempio n. 2
0
		/// <summary>
		/// Raises the <see cref="E:Showing"/> event.
		/// </summary>
		/// <param name="e">The <see cref="IExtendFramework.Controls.AdvancedMessageBox.TaskDialogShowingEventArgs"/> instance containing the event data.</param>
		private static void OnShowing(TaskDialogShowingEventArgs e)
		{
			if (Showing != null)
			{
				Showing(null, e);
			}
		}