mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +08:00
12 lines
666 B
Plaintext
12 lines
666 B
Plaintext
|
<Grid x:Class="GameRes.Formats.GUI.WidgetYPF"
|
||
|
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"
|
||
|
MaxWidth="250">
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="Auto"/>
|
||
|
<ColumnDefinition MinWidth="100" Width="*"/>
|
||
|
</Grid.ColumnDefinitions>
|
||
|
<Label Content="{x:Static s:arcStrings.YPFLabelKey}" Target="{Binding ElementName=Passkey}" Grid.Column="0" Grid.Row="0" HorizontalAlignment="Right"/>
|
||
|
<TextBox Name="Passkey" Margin="5" Width="100" Grid.Column="1" Grid.Row="0"/>
|
||
|
</Grid>
|