20 lines
842 B
Text
20 lines
842 B
Text
|
<Window xmlns="https://github.com/avaloniaui"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
mc:Ignorable="d" d:DesignWidth="300" d:DesignHeight="150"
|
||
|
x:Class="CollabVMClient.Views.DirectConnect"
|
||
|
Title="CollabVM - Direct Connect"
|
||
|
Width="300" Height="150" CanResize="False">
|
||
|
<StackPanel Orientation="Vertical">
|
||
|
<Label>URL</Label>
|
||
|
<TextBox Width="300" Name="url" HorizontalAlignment="Left"/>
|
||
|
<Label>Node</Label>
|
||
|
<TextBox Width="150" Name="node" HorizontalAlignment="Left"/>
|
||
|
<StackPanel Orientation="Horizontal">
|
||
|
<Button Name="connectBtn">Connect</Button>
|
||
|
<Button Name="cancelBtn">Cancel</Button>
|
||
|
</StackPanel>
|
||
|
</StackPanel>
|
||
|
</Window>
|