Mesen2/UI/Controls/EnumComboBox.axaml
2023-01-25 16:03:56 -05:00

17 lines
No EOL
619 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"
mc:Ignorable="d" d:DesignWidth="400" d:DesignHeight="50"
x:Name="root"
HorizontalAlignment="Stretch"
x:Class="Mesen.Controls.EnumComboBox"
>
<ComboBox
HorizontalAlignment="Stretch"
Items="{CompiledBinding InternalItems, ElementName=root}"
SelectedItem="{CompiledBinding InternalSelectedItem, ElementName=root}"
/>
</UserControl>