18 lines
720 B
Text
18 lines
720 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="90"
|
||
|
x:Class="CollabVMClient.Views.AddServer"
|
||
|
Title="CollabVM - Add Server"
|
||
|
Width="300" Height="90" CanResize="False">
|
||
|
<StackPanel Orientation="Vertical">
|
||
|
<Label>URL</Label>
|
||
|
<TextBox Width="300" Name="urlTextBox"/>
|
||
|
<StackPanel Orientation="Horizontal">
|
||
|
<Button Name="confirm">Confirm</Button>
|
||
|
<Button Name="cancel">Cancel</Button>
|
||
|
</StackPanel>
|
||
|
</StackPanel>
|
||
|
</Window>
|