mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-24 06:05:35 +08:00
11 lines
679 B
XML
11 lines
679 B
XML
<StackPanel x:Class="GameRes.Formats.GUI.WidgetGYU"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:p="clr-namespace:GameRes.Formats.Properties"
|
|
xmlns:ex="clr-namespace:GameRes.Formats.ExHibit">
|
|
<ComboBox Name="Title" ItemsSource="{Binding Source={x:Static ex:GyuFormat.KnownKeys}, Mode=OneWay}"
|
|
SelectedValue="{Binding Source={x:Static p:Settings.Default}, Path=GYUTitle, Mode=TwoWay}"
|
|
SelectedValuePath="Key" DisplayMemberPath="Key"
|
|
Width="200" Grid.Row="1" HorizontalAlignment="Left"/>
|
|
</StackPanel>
|