/// <summary>
 ///  Execute the about command by launching the about window.
 /// </summary>
 /// <param name="sender">The command that raised the event (ignored).</param>
 /// <param name="e">The event arguments (ignored).</param>
 private void AboutCommand_Executed(object sender, ExecutedRoutedEventArgs e)
 {
     var about = new AboutPdfMerge();
     about.ShowDialog();
 }
Exemple #2
0
        /// <summary>
        ///  Execute the about command by launching the about window.
        /// </summary>
        /// <param name="sender">The command that raised the event (ignored).</param>
        /// <param name="e">The event arguments (ignored).</param>
        private void AboutCommand_Executed(object sender, ExecutedRoutedEventArgs e)
        {
            var about = new AboutPdfMerge();

            about.ShowDialog();
        }