implemented Will co. archives creation.

This commit is contained in:
morkt
2014-11-01 02:14:51 +04:00
parent 56d2a45d94
commit 0b8eb1f9d4
11 changed files with 242 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
<Grid x:Class="GameRes.Formats.GUI.CreateWARCWidget"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="clr-namespace:GameRes.Formats.Strings"
xmlns:p="clr-namespace:GameRes.Formats.Properties">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Label Content="{x:Static s:arcStrings.WARCLabelLength}" Target="{Binding ElementName=NameLength}" Grid.Column="0" Margin="0"/>
<ComboBox Name="NameLength" Width="40" SelectedValuePath="Content" Grid.Column="1" Margin="8"
SelectedValue="{Binding Source={x:Static p:Settings.Default}, Path=WARCNameLength, Mode=TwoWay}">
<ComboBoxItem Content="8"/>
<ComboBoxItem Content="12"/>
</ComboBox>
</Grid>