45 lines
1.8 KiB
XML
45 lines
1.8 KiB
XML
<Page x:Class="Common.UI.Pages.Home"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:VM="clr-namespace:Common.UI.ViewModels"
|
|
xmlns:Controls="clr-namespace:Common.UI.Controls"
|
|
WindowTitle="UI / Home"
|
|
Title="Home">
|
|
<Page.DataContext>
|
|
<VM:HomeVM />
|
|
</Page.DataContext>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Controls:MainMenu Grid.Row="0" />
|
|
<Button Command="{Binding StartScanning}" Content="Start Scanning" Grid.Row="1" Margin="5" Padding="21 8" />
|
|
<Grid Grid.Row="2">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<ScrollViewer Grid.Column="0">
|
|
<ItemsControl ItemsSource="{Binding Addresses433}">
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate >
|
|
<Label Content="{Binding}" FontFamily="Verdana" Padding="13 3" />
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
</ScrollViewer>
|
|
<ScrollViewer Grid.Column="1">
|
|
<ItemsControl Grid.Column="1" ItemsSource="{Binding Addresses868}">
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate >
|
|
<Label Content="{Binding}" FontFamily="Verdana" Padding="13 3" />
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
</ScrollViewer>
|
|
</Grid>
|
|
</Grid>
|
|
</Page>
|