2023-03-03 19:25:33 +00:00
|
|
|
<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"
|
2024-05-21 20:15:19 +01:00
|
|
|
xmlns:model="using:SPT.Launcher.Models"
|
2023-03-03 19:25:33 +00:00
|
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
2024-05-21 20:15:19 +01:00
|
|
|
x:Class="SPT.Launcher.CustomControls.LocalizedLauncherActionSelector">
|
2023-03-03 19:25:33 +00:00
|
|
|
<ComboBox x:Name="combobox"
|
|
|
|
SelectionChanged="combobox_SelectionChanged"
|
|
|
|
>
|
|
|
|
<ComboBox.ItemTemplate>
|
|
|
|
<DataTemplate DataType="{x:Type model:LocalizedLauncherAction}">
|
2024-07-08 18:41:22 -04:00
|
|
|
<TextBlock Text="{Binding Name}"/>
|
2023-03-03 19:25:33 +00:00
|
|
|
</DataTemplate>
|
|
|
|
</ComboBox.ItemTemplate>
|
|
|
|
</ComboBox>
|
|
|
|
</UserControl>
|