| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <UserControl
- x:Class="Ryujinx.Ava.UI.Views.Settings.SettingsHotkeysView"
- xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:ext="clr-namespace:Ryujinx.Ava.Common.Markup"
- xmlns:viewModels="clr-namespace:Ryujinx.Ava.UI.ViewModels"
- xmlns:helpers="clr-namespace:Ryujinx.Ava.UI.Helpers"
- mc:Ignorable="d"
- x:DataType="viewModels:SettingsViewModel"
- x:CompileBindings="True"
- Focusable="True">
- <Design.DataContext>
- <viewModels:SettingsViewModel />
- </Design.DataContext>
- <UserControl.Styles>
- <Style Selector="StackPanel > StackPanel">
- <Setter Property="Margin" Value="10, 0, 0, 0" />
- <Setter Property="Orientation" Value="Horizontal" />
- </Style>
- <Style Selector="StackPanel > StackPanel > TextBlock">
- <Setter Property="VerticalAlignment" Value="Center" />
- <Setter Property="Width" Value="230" />
- </Style>
- <Style Selector="ToggleButton">
- <Setter Property="Width" Value="90" />
- <Setter Property="Height" Value="27" />
- </Style>
- <Style Selector="ToggleButton > TextBlock">
- <Setter Property="TextAlignment" Value="Center" />
- </Style>
- </UserControl.Styles>
- <ScrollViewer
- Name="HotkeysPage"
- HorizontalAlignment="Stretch"
- VerticalAlignment="Stretch"
- HorizontalScrollBarVisibility="Disabled"
- VerticalScrollBarVisibility="Auto">
- <Border Classes="settings">
- <StackPanel
- Name="SettingButtons"
- Margin="10"
- Orientation="Vertical"
- Spacing="10">
- <TextBlock
- Classes="h1"
- Text="{ext:Locale SettingsTabHotkeysHotkeys}" />
- <StackPanel>
- <TextBlock Text="{ext:Locale SettingsTabHotkeysToggleVSyncModeHotkey}" />
- <ToggleButton Name="ToggleVSyncMode">
- <TextBlock Text="{Binding KeyboardHotkey.ToggleVSyncMode, Converter={x:Static helpers:KeyValueConverter.Instance}}" />
- </ToggleButton>
- </StackPanel>
- <StackPanel>
- <TextBlock Text="{ext:Locale SettingsTabHotkeysScreenshotHotkey}" />
- <ToggleButton Name="Screenshot">
- <TextBlock Text="{Binding KeyboardHotkey.Screenshot, Converter={x:Static helpers:KeyValueConverter.Instance}}" />
- </ToggleButton>
- </StackPanel>
- <StackPanel>
- <TextBlock Text="{ext:Locale SettingsTabHotkeysShowUiHotkey}" />
- <ToggleButton Name="ShowUI">
- <TextBlock Text="{Binding KeyboardHotkey.ShowUI, Converter={x:Static helpers:KeyValueConverter.Instance}}" />
- </ToggleButton>
- </StackPanel>
- <StackPanel>
- <TextBlock Text="{ext:Locale SettingsTabHotkeysPauseHotkey}" />
- <ToggleButton Name="Pause">
- <TextBlock Text="{Binding KeyboardHotkey.Pause, Converter={x:Static helpers:KeyValueConverter.Instance}}" />
- </ToggleButton>
- </StackPanel>
- <StackPanel>
- <TextBlock Text="{ext:Locale SettingsTabHotkeysToggleMuteHotkey}" />
- <ToggleButton Name="ToggleMute">
- <TextBlock Text="{Binding KeyboardHotkey.ToggleMute, Converter={x:Static helpers:KeyValueConverter.Instance}}" />
- </ToggleButton>
- </StackPanel>
- <StackPanel>
- <TextBlock Text="{ext:Locale SettingsTabHotkeysResScaleUpHotkey}" />
- <ToggleButton Name="ResScaleUp">
- <TextBlock Text="{Binding KeyboardHotkey.ResScaleUp, Converter={x:Static helpers:KeyValueConverter.Instance}}" />
- </ToggleButton>
- </StackPanel>
- <StackPanel>
- <TextBlock Text="{ext:Locale SettingsTabHotkeysResScaleDownHotkey}" />
- <ToggleButton Name="ResScaleDown">
- <TextBlock Text="{Binding KeyboardHotkey.ResScaleDown, Converter={x:Static helpers:KeyValueConverter.Instance}}" />
- </ToggleButton>
- </StackPanel>
- <StackPanel>
- <TextBlock Text="{ext:Locale SettingsTabHotkeysVolumeUpHotkey}" />
- <ToggleButton Name="VolumeUp">
- <TextBlock Text="{Binding KeyboardHotkey.VolumeUp, Converter={x:Static helpers:KeyValueConverter.Instance}}" />
- </ToggleButton>
- </StackPanel>
- <StackPanel>
- <TextBlock Text="{ext:Locale SettingsTabHotkeysVolumeDownHotkey}" />
- <ToggleButton Name="VolumeDown">
- <TextBlock Text="{Binding KeyboardHotkey.VolumeDown, Converter={x:Static helpers:KeyValueConverter.Instance}}" />
- </ToggleButton>
- </StackPanel>
- <StackPanel Margin="10,0,0,0" Orientation="Horizontal">
- <TextBlock Text="{ext:Locale SettingsTabHotkeysIncrementCustomVSyncIntervalHotkey}" />
- <ToggleButton Name="CustomVSyncIntervalIncrement">
- <TextBlock Text="{Binding KeyboardHotkey.CustomVSyncIntervalIncrement, Converter={x:Static helpers:KeyValueConverter.Instance}}" />
- </ToggleButton>
- </StackPanel>
- <StackPanel Margin="10,0,0,0" Orientation="Horizontal">
- <TextBlock Text="{ext:Locale SettingsTabHotkeysDecrementCustomVSyncIntervalHotkey}" />
- <ToggleButton Name="CustomVSyncIntervalDecrement">
- <TextBlock Text="{Binding KeyboardHotkey.CustomVSyncIntervalDecrement, Converter={x:Static helpers:KeyValueConverter.Instance}}" />
- </ToggleButton>
- </StackPanel>
- </StackPanel>
- </Border>
- </ScrollViewer>
- </UserControl>
|