Exemplo n.º 1
0
 void CloseShortcutWindow()
 {
     Hide();
     if (_shortcutWindow != null)
     {
         _shortcutWindow.Close();
         _shortcutWindow = null;
     }
 }
Exemplo n.º 2
0
 void _shortcutWindow_Closed(object sender, EventArgs e)
 {
     _shortcutWindow = null;
     Hide();
 }
Exemplo n.º 3
0
        public void OpenShortcutWindow()
        {
            CloseShortcutWindow();

            Activate();
            Show();

            if (_shortcutWindow == null)
            {
                _shortcutWindow = new ShortcutWindow();
                _shortcutWindow.Closed += new EventHandler(_shortcutWindow_Closed);
                _shortcutWindow.Show();
                _shortcutWindow.Activate();
                _shortcutWindow.Owner = this;
            }
        }