AssetRipper_AssetRipper/Source/AssetRipper.GUI/Components/BaseConfigurationDropdown.axaml
Jeremy Pritts b8da7b2a92 Bump NuGet references
* Resolves #801
* Related to #797
2023-05-19 21:40:38 -04:00

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>