CollabVMDesktopClient/CollabVMClient/Views/AddServer.axaml

18 lines
720 B
Text
Raw Normal View History

2023-08-29 08:52:35 -04:00
<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>