-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathAccountDialog.xaml
More file actions
21 lines (20 loc) · 938 Bytes
/
AccountDialog.xaml
File metadata and controls
21 lines (20 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<ContentDialog
x:Class="ConcentratorXmpp.AccountDialog"
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="XMPP Account"
PrimaryButtonText="Connect"
SecondaryButtonText="Cancel"
PrimaryButtonClick="ContentDialog_ConnectButtonClick"
SecondaryButtonClick="ContentDialog_CancelButtonClick">
<StackPanel>
<TextBox Name="HostInput" Header="Host:" />
<TextBox Name="PortInput" Header="Port:" Margin="0,16,0,0" />
<TextBox Name="UserNameInput" Header="User Name:" Margin="0,16,0,0" />
<PasswordBox Name="PasswordInput" Header="Password:" Margin="0,16,0,0" />
</StackPanel>
</ContentDialog>