mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 13:45:34 +08:00
16 lines
1.0 KiB
XML
16 lines
1.0 KiB
XML
<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">
|
|
<Label Content="{x:Static s:arcStrings.ArcTitleOrPassword}" HorizontalAlignment="Left"/>
|
|
<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>
|