mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
implemented 'non color' ARC archives.
This commit is contained in:
12
ArcFormats/NonColor/WidgetNCARC.xaml
Normal file
12
ArcFormats/NonColor/WidgetNCARC.xaml
Normal 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>
|
||||
Reference in New Issue
Block a user