| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <UserControl
- x:Class="Ryujinx.Ava.UI.Views.Settings.SettingsCPUView"
- 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:helper="clr-namespace:Ryujinx.Common.Helper;assembly=Ryujinx.Common"
- mc:Ignorable="d"
- x:DataType="viewModels:SettingsViewModel">
- <Design.DataContext>
- <viewModels:SettingsViewModel />
- </Design.DataContext>
- <ScrollViewer
- Name="CpuPage"
- HorizontalAlignment="Stretch"
- VerticalAlignment="Stretch"
- HorizontalScrollBarVisibility="Disabled"
- VerticalScrollBarVisibility="Auto">
- <Border Classes="settings">
- <StackPanel
- Margin="10"
- HorizontalAlignment="Stretch"
- Orientation="Vertical"
- Spacing="10">
- <TextBlock Classes="h1" Text="{ext:Locale SettingsTabCpuCache}" />
- <StackPanel
- Margin="10,0,0,0"
- HorizontalAlignment="Stretch"
- Orientation="Vertical">
- <CheckBox IsChecked="{Binding EnablePptc}">
- <TextBlock Text="{ext:Locale SettingsTabSystemEnablePptc}"
- ToolTip.Tip="{ext:Locale PptcToggleTooltip}" />
- </CheckBox>
- <CheckBox IsChecked="{Binding EnableLowPowerPptc}">
- <TextBlock Text="{ext:Locale SettingsTabSystemEnableLowPowerPptc}"
- ToolTip.Tip="{ext:Locale LowPowerPptcToggleTooltip}" />
- </CheckBox>
- </StackPanel>
- <Separator Height="1" />
- <TextBlock Classes="h1" Text="{ext:Locale SettingsTabCpuMemory}" />
- <StackPanel
- Margin="10,0,0,0"
- HorizontalAlignment="Stretch"
- Orientation="Vertical">
- <StackPanel Orientation="Horizontal">
- <TextBlock VerticalAlignment="Center"
- Text="{ext:Locale SettingsTabSystemMemoryManagerMode}"
- ToolTip.Tip="{ext:Locale MemoryManagerTooltip}"
- Width="250" />
- <ComboBox SelectedIndex="{Binding MemoryMode}"
- ToolTip.Tip="{ext:Locale MemoryManagerTooltip}"
- HorizontalContentAlignment="Left"
- Width="350">
- <ComboBoxItem
- ToolTip.Tip="{ext:Locale MemoryManagerSoftwareTooltip}">
- <TextBlock
- Text="{ext:Locale SettingsTabSystemMemoryManagerModeSoftware}" />
- </ComboBoxItem>
- <ComboBoxItem
- ToolTip.Tip="{ext:Locale MemoryManagerHostTooltip}">
- <TextBlock Text="{ext:Locale SettingsTabSystemMemoryManagerModeHost}" />
- </ComboBoxItem>
- <ComboBoxItem
- ToolTip.Tip="{ext:Locale MemoryManagerUnsafeTooltip}">
- <TextBlock
- Text="{ext:Locale SettingsTabSystemMemoryManagerModeHostUnchecked}" />
- </ComboBoxItem>
- </ComboBox>
- </StackPanel>
- <CheckBox IsChecked="{Binding UseHypervisor}"
- IsVisible="{x:Static helper:RunningPlatform.IsArmMac}"
- ToolTip.Tip="{ext:Locale UseHypervisorTooltip}">
- <TextBlock Text="{ext:Locale SettingsTabSystemUseHypervisor}"
- ToolTip.Tip="{ext:Locale UseHypervisorTooltip}" />
- </CheckBox>
- </StackPanel>
- </StackPanel>
- </Border>
- </ScrollViewer>
- </UserControl>
|