GARbro-mirror/ArcFormats/NSystem/WidgetMSD.xaml
2018-02-03 19:53:41 +04:00

12 lines
720 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 ElementName=Password, Path=Text, Mode=TwoWay}"
SelectedValuePath="Value" DisplayMemberPath="Key"
Width="250" HorizontalAlignment="Left"/>
<TextBox Name="Password" Text="{Binding Source={x:Static p:Settings.Default}, Path=FJSYSPassword, Mode=OneWay}"
Width="250" HorizontalAlignment="Left" Margin="0,5,0,0"/>
</StackPanel>