14 lines
539 B
XML
14 lines
539 B
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="Logof_Client.Wiki.NamePromptWindow"
|
|
Width="400" Height="120" Title="Input">
|
|
<StackPanel Margin="8">
|
|
<TextBlock Name="LblPrompt" />
|
|
<TextBox Name="TbInput" Margin="0,6,0,6" />
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Spacing="8">
|
|
<Button Name="BtnOk" Content="OK" />
|
|
<Button Name="BtnCancel" Content="Cancel" />
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</Window>
|