示例#1
0
 public KeyboardSettings(KeyBindingPanel keyConfig)
 {
     Children = new Drawable[]
     {
         new SettingsButton
         {
             Text        = "Key configuration",
             TooltipText = "Change global shortcut keys and gameplay bindings",
             Action      = keyConfig.ToggleVisibility
         },
     };
 }
示例#2
0
 public BindingSettings(KeyBindingPanel keyConfig)
 {
     Children = new Drawable[]
     {
         new SettingsButton
         {
             Text        = BindingSettingsStrings.Configure,
             TooltipText = BindingSettingsStrings.ChangeBindingsButton,
             Action      = keyConfig.ToggleVisibility
         },
     };
 }
示例#3
0
 public KeyboardSettings(KeyBindingPanel keyConfig)
 {
     Children = new Drawable[]
     {
         new SettingsButton
         {
             Text        = "键盘配置",
             TooltipText = "更改全局快捷键和游戏键位",
             Action      = keyConfig.ToggleVisibility
         },
     };
 }
示例#4
0
 public KeyboardSettings(KeyBindingPanel keyConfig)
 {
     Children = new Drawable[]
     {
         new SettingsButton
         {
             Text        = "按鍵映射",
             TooltipText = "變動每個按鍵的操作和遊戲中按鍵功能",
             Action      = keyConfig.ToggleVisibility
         },
     };
 }