(GyuFormat): query encryption scheme.

This commit is contained in:
morkt
2016-08-04 05:05:44 +04:00
parent 5ea59a1a3e
commit 85ec4b3a37
13 changed files with 152 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
<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>