-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathMainPage.xaml
More file actions
23 lines (22 loc) · 987 Bytes
/
MainPage.xaml
File metadata and controls
23 lines (22 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Page
x:Class="Sensor.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Sensor"
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"/>
<CheckBox Name="OutputToFile" Click="OutputToFile_Click">Output values to file.</CheckBox>
<TextBlock Text="Events:" Margin="0,20,0,0"/>
<StackPanel Name="EventsPanel"/>
</StackPanel>
</Border>
</Page>