2018-01-30 10:34:24 +08:00
|
|
|
<StackPanel x:Class="GameRes.Formats.GUI.WidgetZIP"
|
|
|
|
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"
|
|
|
|
xmlns:zip="clr-namespace:GameRes.Formats.PkWare"
|
|
|
|
Orientation="Vertical">
|
2018-01-30 10:54:46 +08:00
|
|
|
<Label Content="{x:Static s:arcStrings.ArcTitleOrPassword}" HorizontalAlignment="Left"/>
|
2018-01-30 10:34:24 +08:00
|
|
|
<ComboBox Name="Title" Width="200" HorizontalAlignment="Left"
|
|
|
|
ItemsSource="{Binding RelativeSource={RelativeSource Self}, Path=DataContext}"
|
|
|
|
SelectedValue="{Binding ElementName=Password, Path=Text, Mode=TwoWay}" SelectedValuePath="Value"
|
|
|
|
DisplayMemberPath="Key"/>
|
|
|
|
<TextBox x:Name="Password" Width="200" HorizontalAlignment="Left" Margin="0,5,0,0"
|
|
|
|
Text="{Binding Source={x:Static p:Settings.Default}, Path=ZIPPassword, Mode=OneWay}"/>
|
|
|
|
</StackPanel>
|