29 lines
1.4 KiB
XML
29 lines
1.4 KiB
XML
<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="Client" 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 Margin="0" Grid.Row="1" Grid.ColumnSpan="2">
|
|
<TextBox x:Name="txtInfo" Margin="10" TextWrapping="Wrap" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch"/>
|
|
</Grid>
|
|
<ListBox x:Name="lstDevices" Grid.Column="1" Margin="10,37,10,10" SelectionChanged="LstDevices_SelectionChanged"/>
|
|
<Button x:Name="btnRefresh" Content="Refresh" Grid.Column="1" Margin="10,10,10,0" VerticalAlignment="Top" Click="BtnRefresh_Click"/>
|
|
</Grid>
|
|
</Window>
|