JetEventView.xaml 863 B

123456789101112131415161718
  1. <UserControl x:Class="Aitex.Triton160.UI.Views.JetEventView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:my1="clr-namespace:Aitex.Core.UI.View.Common;assembly=Core"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. mc:Ignorable="d"
  8. Height="800" Width="1920" >
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="325" />
  12. <RowDefinition Height="425*" />
  13. </Grid.RowDefinitions>
  14. <my1:MonitorView Grid.Row="0" DataContext="{Binding Path=MonitorVM}"/>
  15. <my1:EventView Grid.Row="1" DataContext="{Binding Path=EventVM}"/>
  16. </Grid>
  17. </UserControl>