mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
29 lines
No EOL
879 B
XML
29 lines
No EOL
879 B
XML
<UserControl
|
|
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:l="using:Mesen.Localization"
|
|
xmlns:c="using:Mesen.Controls"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="55"
|
|
x:Name="root"
|
|
HorizontalAlignment="Stretch"
|
|
x:Class="Mesen.Controls.InputComboBox"
|
|
>
|
|
<StackPanel Orientation="Horizontal">
|
|
<c:EnumComboBox
|
|
Margin="5 0"
|
|
Width="190"
|
|
VerticalAlignment="Center"
|
|
SelectedItem="{Binding ControllerType, ElementName=root}"
|
|
AvailableValues="{Binding AvailableValues, ElementName=root}"
|
|
/>
|
|
<Button
|
|
VerticalAlignment="Center"
|
|
Content="{l:Translate btnSetup}"
|
|
Click="btnSetup_Click"
|
|
IsEnabled="{Binding SetupEnabled, ElementName=root}"
|
|
/>
|
|
</StackPanel>
|
|
</UserControl> |