mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
13 lines
827 B
XML
13 lines
827 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"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450">
|
|
<Grid RowDefinitions="25,40,*">
|
|
<TextBlock Grid.Row="0" Text="{Binding OptionTitle, FallbackValue='Title'}"></TextBlock>
|
|
<ComboBox Grid.Row="1" ItemsSource="{Binding Values}" SelectedItem="{Binding RawSelectedValue, FallbackValue='Value'}"></ComboBox>
|
|
<TextBlock Grid.Row="2" Text="{Binding SelectedValueDescription, FallbackValue='NO DESCRIPTION SET'}" FontSize="14"
|
|
TextWrapping="Wrap"></TextBlock>
|
|
</Grid>
|
|
</UserControl>
|