mirror of
https://github.com/lifegpc/GARbro.git
synced 2026-06-06 13:39:09 +08:00
13 lines
864 B
XML
13 lines
864 B
XML
<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>
|