/// <summary>
        /// Handles the Click event of the menuItemCreateExtension control.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="System.Windows.RoutedEventArgs"/> instance containing the event data.</param>
        private void menuItemCreateExtension_Click(object sender, RoutedEventArgs e)
        {
            ExtensionForm createExtension = new ExtensionForm();

            createExtension.Owner = this;
            createExtension.ShowDialog();
        }
Esempio n. 2
0
 /// <summary>
 /// Handles the Click event of the menuItemCreateExtension control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="System.Windows.RoutedEventArgs"/> instance containing the event data.</param>
 private void menuItemCreateExtension_Click(object sender, RoutedEventArgs e)
 {
     ExtensionForm createExtension = new ExtensionForm();
     createExtension.Owner = this;
     createExtension.ShowDialog();
 }