implemented 'non color' ARC archives.

This commit is contained in:
morkt
2016-05-20 04:12:23 +04:00
parent f4517d4183
commit 2b41686e3f
8 changed files with 377 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
<StackPanel x:Class="GameRes.Formats.GUI.WidgetNCARC"
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"
MaxWidth="250" Orientation="Vertical">
<ComboBox Name="Scheme" ItemsSource="{Binding}"
SelectedValue="{Binding Source={x:Static p:Settings.Default}, Path=NCARCScheme, Mode=TwoWay}" Width="200"
SelectedValuePath="Key" DisplayMemberPath="Key" HorizontalAlignment="Left"/>
<TextBox Name="Original" Background="Transparent" BorderThickness="0" Text="{Binding Path=Value.Title}"
IsReadOnly="True" TextWrapping="NoWrap" Grid.Row="1" Margin="0,3,0,3" HorizontalAlignment="Left"
DataContext="{Binding ElementName=Scheme, Path=SelectedItem}"/>
</StackPanel>