-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathRegistrationDialog.xaml
More file actions
38 lines (37 loc) · 2.07 KB
/
RegistrationDialog.xaml
File metadata and controls
38 lines (37 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<ContentDialog
x:Class="ConcentratorXmpp.RegistrationDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:ConcentratorXmpp"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Title="Registration"
PrimaryButtonText="Register"
SecondaryButtonText="Cancel"
PrimaryButtonClick="ContentDialog_ConnectButtonClick"
SecondaryButtonClick="ContentDialog_CancelButtonClick">
<StackPanel>
<TextBlock TextWrapping="Wrap" Margin="0,16,0,0">Your device is not registered. Please provide location information for the device. This helps the device connect with other devices on the same location.</TextBlock>
<StackPanel Orientation="Horizontal">
<TextBox Name="NameInput" Header="Name:" Margin="0,16,0,0" Width="240" />
<TextBox Name="RoomInput" Header="Room:" Margin="16,16,0,0" Width="240" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBox Name="ApartmentInput" Header="Apartment:" Margin="0,16,0,0" Width="240" />
<TextBox Name="BuildingInput" Header="Building:" Margin="16,16,0,0" Width="240" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBox Name="StreetInput" Header="Street:" Margin="0,16,0,0" Width="384" />
<TextBox Name="StreetNrInput" Header="Street number:" Margin="16,16,0,0" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBox Name="AreaInput" Header="Area:" Margin="0,16,0,0" Width="240" />
<TextBox Name="CityInput" Header="City:" Margin="16,16,0,0" Width="240" />
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBox Name="RegionInput" Header="Region:" Margin="0,16,0,0" Width="240" />
<TextBox Name="CountryInput" Header="Country:" Margin="16,16,0,0" Width="240" />
</StackPanel>
</StackPanel>
</ContentDialog>