mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-10 12:49:13 +00:00
Remove all ReflectionBindings
This commit is contained in:
parent
a0687b630c
commit
c7f52388c9
3 changed files with 11 additions and 12 deletions
|
@ -15,8 +15,7 @@
|
||||||
<MenuItem Header="Test 2" />
|
<MenuItem Header="Test 2" />
|
||||||
<MenuItem Header="Test 3">
|
<MenuItem Header="Test 3">
|
||||||
<MenuItem.Icon>
|
<MenuItem.Icon>
|
||||||
<CheckBox Margin="0"
|
<CheckBox Margin="0" />
|
||||||
IsChecked="{ReflectionBinding Checkbox, Mode=TwoWay}" />
|
|
||||||
</MenuItem.Icon>
|
</MenuItem.Icon>
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
|
|
|
@ -454,7 +454,7 @@
|
||||||
<Button
|
<Button
|
||||||
Margin="10"
|
Margin="10"
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
Command="{ReflectionBinding ShowMotionConfig}">
|
Command="{Binding ShowMotionConfig}">
|
||||||
<TextBlock Text="{locale:Locale ControllerSettingsConfigureGeneral}" />
|
<TextBlock Text="{locale:Locale ControllerSettingsConfigureGeneral}" />
|
||||||
</Button>
|
</Button>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
@ -480,7 +480,7 @@
|
||||||
<Button
|
<Button
|
||||||
Margin="10"
|
Margin="10"
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
Command="{ReflectionBinding ShowRumbleConfig}">
|
Command="{Binding ShowRumbleConfig}">
|
||||||
<TextBlock Text="{locale:Locale ControllerSettingsConfigureGeneral}" />
|
<TextBlock Text="{locale:Locale ControllerSettingsConfigureGeneral}" />
|
||||||
</Button>
|
</Button>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
|
@ -106,7 +106,7 @@
|
||||||
Margin="5,0,0,0"
|
Margin="5,0,0,0"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
ToolTip.Tip="{locale:Locale ControllerSettingsLoadProfileToolTip}"
|
ToolTip.Tip="{locale:Locale ControllerSettingsLoadProfileToolTip}"
|
||||||
Command="{ReflectionBinding LoadProfile}">
|
Command="{Binding LoadProfile}">
|
||||||
<ui:SymbolIcon
|
<ui:SymbolIcon
|
||||||
Symbol="Upload"
|
Symbol="Upload"
|
||||||
FontSize="15"
|
FontSize="15"
|
||||||
|
@ -118,7 +118,7 @@
|
||||||
Margin="5,0,0,0"
|
Margin="5,0,0,0"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
ToolTip.Tip="{locale:Locale ControllerSettingsSaveProfileToolTip}"
|
ToolTip.Tip="{locale:Locale ControllerSettingsSaveProfileToolTip}"
|
||||||
Command="{ReflectionBinding SaveProfile}">
|
Command="{Binding SaveProfile}">
|
||||||
<ui:SymbolIcon
|
<ui:SymbolIcon
|
||||||
Symbol="Save"
|
Symbol="Save"
|
||||||
FontSize="15"
|
FontSize="15"
|
||||||
|
@ -130,7 +130,7 @@
|
||||||
Margin="5,0,0,0"
|
Margin="5,0,0,0"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
ToolTip.Tip="{locale:Locale ControllerSettingsRemoveProfileToolTip}"
|
ToolTip.Tip="{locale:Locale ControllerSettingsRemoveProfileToolTip}"
|
||||||
Command="{ReflectionBinding RemoveProfile}">
|
Command="{Binding RemoveProfile}">
|
||||||
<ui:SymbolIcon
|
<ui:SymbolIcon
|
||||||
Symbol="Delete"
|
Symbol="Delete"
|
||||||
FontSize="15"
|
FontSize="15"
|
||||||
|
@ -174,7 +174,7 @@
|
||||||
MinWidth="0"
|
MinWidth="0"
|
||||||
Margin="5,0,0,0"
|
Margin="5,0,0,0"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
Command="{ReflectionBinding LoadDevices}">
|
Command="{Binding LoadDevices}">
|
||||||
<ui:SymbolIcon
|
<ui:SymbolIcon
|
||||||
Symbol="Refresh"
|
Symbol="Refresh"
|
||||||
FontSize="15"
|
FontSize="15"
|
||||||
|
@ -200,8 +200,8 @@
|
||||||
<ComboBox
|
<ComboBox
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
HorizontalAlignment="Stretch"
|
HorizontalAlignment="Stretch"
|
||||||
ItemsSource="{ReflectionBinding Controllers}"
|
ItemsSource="{Binding Controllers}"
|
||||||
SelectedIndex="{ReflectionBinding Controller}">
|
SelectedIndex="{Binding Controller}">
|
||||||
<ComboBox.ItemTemplate>
|
<ComboBox.ItemTemplate>
|
||||||
<DataTemplate DataType="models:ControllerModel">
|
<DataTemplate DataType="models:ControllerModel">
|
||||||
<TextBlock Text="{Binding Name}" />
|
<TextBlock Text="{Binding Name}" />
|
||||||
|
|
Loading…
Reference in a new issue