28 lines
1.3 KiB
Plaintext
28 lines
1.3 KiB
Plaintext
|
|
<Window x:Class="FrontEnd.MainWindow"
|
||
|
|
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:FrontEnd"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
Title="MainWindow" Height="517.5" Width="800"
|
||
|
|
Loaded="Window_Loaded">
|
||
|
|
<Grid>
|
||
|
|
<Grid.ColumnDefinitions>
|
||
|
|
<ColumnDefinition Width="600" />
|
||
|
|
<ColumnDefinition Width="300*" />
|
||
|
|
</Grid.ColumnDefinitions>
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="350" />
|
||
|
|
<RowDefinition Height="200*" />
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<Image x:Name="imgMap" Margin="10" />
|
||
|
|
<Canvas x:Name="cnvMap" Margin="10" />
|
||
|
|
|
||
|
|
<Grid HorizontalAlignment="Left" Height="117" Margin="10" Grid.Row="1" VerticalAlignment="Top" Width="772" Grid.ColumnSpan="2">
|
||
|
|
<TextBox x:Name="txtInfo" HorizontalAlignment="Left" Height="23" Margin="10,48,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="752"/>
|
||
|
|
</Grid>
|
||
|
|
<ListBox x:Name="lstDevices" Grid.Column="1" Margin="10" SelectionChanged="LstDevices_SelectionChanged"/>
|
||
|
|
</Grid>
|
||
|
|
</Window>
|