-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
17 lines (16 loc) · 1.17 KB
/
MainWindow.xaml
File metadata and controls
17 lines (16 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:IndoorFinder"
xmlns:Properties="clr-namespace:IndoorFinder.Properties" x:Class="IndoorFinder.MainWindow"
mc:Ignorable="d"
Title="MainWindow" Height="900" Width="1600">
<Grid>
<Button Name="buttonEdit" Content="Edit" HorizontalAlignment="Left" VerticalAlignment="Top" Width="102" Margin="48,199,0,0" Click="buttonEdit_Click" Height="44"/>
<Button Name="buttonDeploy" Content="Deploy" HorizontalAlignment="Left" VerticalAlignment="Top" Width="102" Margin="48,390,0,0" Height="44"/>
<Button Name="buttonSearch" Content="Search" HorizontalAlignment="Left" VerticalAlignment="Top" Width="102" Margin="48,581,0,0" Height="44"/>
<ContentControl Name="contentControl" Content="ContentControl" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="254,83,0,0" Height="675" Width="1200"/>
</Grid>
</Window>