예제 #1
0
 private void LoadKeys()
 {
     foreach (Grid grid in keyboard.Children)
     {
         foreach (Control item in grid.Children)
         {
             ButtonWithKey btn = item as ButtonWithKey;
             btn?.SetChar(caps);
         }
     }
 }