implemented FJSYS archives and MGD images.

This commit is contained in:
morkt
2016-11-25 07:42:32 +04:00
parent f44e13ae34
commit c42c088bf5
14 changed files with 554 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<StackPanel x:Class="GameRes.Formats.GUI.WidgetMSD"
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">
<ComboBox Name="Title" ItemsSource="{Binding}"
SelectedValue="{Binding Source={x:Static p:Settings.Default}, Path=FJSYSPassword, Mode=TwoWay}"
SelectedValuePath="Value" DisplayMemberPath="Key" SelectionChanged="Title_SelectionChanged"
Width="250" HorizontalAlignment="Left"/>
<TextBox Name="Password" Width="250" HorizontalAlignment="Left" Margin="0,5,0,0"/>
</StackPanel>