123456789101112131415161718 |
- <UserControl x:Class="Aitex.Triton160.UI.Views.JetEventView"
- 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:my1="clr-namespace:Aitex.Core.UI.View.Common;assembly=Core"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- mc:Ignorable="d"
- Height="800" Width="1920" >
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="325" />
- <RowDefinition Height="425*" />
- </Grid.RowDefinitions>
- <my1:MonitorView Grid.Row="0" DataContext="{Binding Path=MonitorVM}"/>
- <my1:EventView Grid.Row="1" DataContext="{Binding Path=EventVM}"/>
- </Grid>
- </UserControl>
|