Ejemplo n.º 1
0
 private void InternalKeyBindExecute(object sender, KeyBindInternalEventArgs e)
 {
     switch (e.Kbn)
     {
     case EKeyBindInternalKbn.ReDisp:
         break;
     }
 }
Ejemplo n.º 2
0
 private void InternalKeyBindExecute(object sender, KeyBindInternalEventArgs e)
 {
     switch (e.Kbn)
     {
     case EKeyBindInternalKbn.ReDisp:
         TabItemUI ti = this.tabControl.SelectedItem as TabItemUI;
         if (ti != null)
         {
             ti.ReDisp();
         }
         break;
     }
 }