예제 #1
0
파일: FilerUI.xaml.cs 프로젝트: turky-9/yu
 private void InternalKeyBindExecute(object sender, KeyBindInternalEventArgs e)
 {
     switch (e.Kbn)
     {
     case EKeyBindInternalKbn.ReDisp:
         break;
     }
 }
예제 #2
0
파일: FilerUI.xaml.cs 프로젝트: turky-9/yu
 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;
     }
 }