mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-24 06:05:35 +08:00
12 lines
787 B
XML
12 lines
787 B
XML
<StackPanel x:Class="GameRes.Formats.GUI.WidgetMSD"
|
|
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">
|
|
<ComboBox Name="Title" ItemsSource="{Binding}"
|
|
SelectedValue="{Binding Source={x:Static p:Settings.Default}, Path=FJSYSPassword, Mode=OneWay}"
|
|
SelectedValuePath="Value" DisplayMemberPath="Key" SelectionChanged="Title_SelectionChanged"
|
|
Width="250" HorizontalAlignment="Left"/>
|
|
<TextBox Name="Password" Text="{Binding Source={x:Static p:Settings.Default}, Path=FJSYSPassword, Mode=TwoWay}"
|
|
Width="250" HorizontalAlignment="Left" Margin="0,5,0,0"/>
|
|
</StackPanel>
|