-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathMainPage.xaml
More file actions
24 lines (23 loc) · 1.1 KB
/
MainPage.xaml
File metadata and controls
24 lines (23 loc) · 1.1 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
<Page
x:Class="SensorXmpp.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:SensorXmpp"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" Unloaded="Page_Unloaded">
<Border Padding="10">
<StackPanel>
<TextBlock Text="D8:" Margin="0,20,0,0"/>
<TextBlock FontSize="40" FontWeight="Bold" Name="D8"/>
<TextBlock Text="A0:" Margin="0,20,0,0"/>
<TextBlock FontSize="40" FontWeight="Bold" Name="A0"/>
<TextBlock Text="Light:" Margin="0,20,0,0"/>
<TextBlock FontSize="40" FontWeight="Bold" Name="Light"/>
<TextBlock Name="LocalFolder">Local folder:</TextBlock>
<CheckBox Name="OutputToFile" Click="OutputToFile_Click" Margin="0,10,0,10">Output log to file.</CheckBox>
<TextBlock Text="Events:"/>
<StackPanel Name="EventsPanel"/>
</StackPanel>
</Border>
</Page>