Example #1
0
        private void Setting_Click(object sender, RoutedEventArgs e)
        {
            UnRegAllHotkey();
            Window_Setting window_Setting = new Window_Setting();

            window_Setting.ShowDialog();
            RegAllHotkey();
        }
Example #2
0
        private void Setting_Click(object sender, RoutedEventArgs e)
        {
            UnRegAllHotkey();
            Topmost = false;
            Window_Setting window_Setting = new Window_Setting()
            {
                Owner = this
            };

            window_Setting.ShowDialog();
            Topmost = true;
            RegAllHotkey();
        }