RecipeMonitorView.xaml 680 B

1234567891011121314
  1. <UserControl x:Class="Aitex.Triton160.UI.Views.RecipeMonitorView"
  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:d="http://schemas.microsoft.com/expression/blend/2008"
  6. mc:Ignorable="d"
  7. xmlns:control="clr-namespace:Aitex.Core.UI.Control;assembly=Core"
  8. Height="800" d:DesignWidth="1920" Background="#669ACC">
  9. <Grid >
  10. <control:PocketProcessDataChart DataContext="{Binding ProcessChartData}"/>
  11. </Grid>
  12. </UserControl>