-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathShellView.xaml
More file actions
16 lines (16 loc) · 993 Bytes
/
ShellView.xaml
File metadata and controls
16 lines (16 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<UserControl x:Class="Netduino.Core.Views.ShellView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="400" d:DesignWidth="400">
<DockPanel>
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Height="40" HorizontalAlignment="Center" >
<TextBlock VerticalAlignment="Center" Margin="5,0,5,0">Emulator Name:</TextBlock>
<TextBox Name="EmulatorName" Width="200" Height="Auto" Margin="5,0,5,0" VerticalAlignment="Center"></TextBox>
<Button Name="WriteRegistry" VerticalAlignment="Center" Margin="5,0,5,0">Register</Button>
</StackPanel>
<ContentControl x:Name="ActiveItem"/>
</DockPanel>
</UserControl>