Files
GARbro-crskycode/ArcFormats/NonColor/WidgetNCARC.xaml
2016-05-20 04:12:23 +04:00

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>