Example #1
0
 private void fcbSQL_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyData != (Keys.K | Keys.Control))
     {
         return;
     }
     _ac?.Show();
     e.Handled = true;
 }
Example #2
0
 private void fctSQL_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyData == (Keys.K | Keys.Control))
     {
         if (ac != null)
         {
             ac.Show();
         }
         e.Handled = true;
     }
 }
Example #3
0
 private void fctLocalExperienceInfo_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyData == (Keys.K | Keys.Control))
     {
         if (aclocal != null)
         {
             aclocal.Show();
         }
         e.Handled = true;
     }
 }