// executes about command. Opens about box

        private void AboutCommand_Executed(object sender, ExecutedRoutedEventArgs e)
        {
            var window = new WindowAbout();

            window.Owner = this;
            window.ShowDialog();
        }
예제 #2
0
        // executes about command. Opens about box

        private void AboutCommand_Executed(object sender, ExecutedRoutedEventArgs e)
        {
            var window = new WindowAbout();
            window.Owner = this;
            window.ShowDialog();
        }