VisionProView.xaml 1.1 KB

1234567891011121314151617181920
  1. <UserControl x:Class="LampInspectionMachine.Views.VisionProView"
  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. xmlns:cognexWF="clr-namespace:Cognex.VisionPro;assembly=Cognex.VisionPro.Controls"
  7. xmlns:cognexWF1="clr-namespace:Cognex.VisionPro.ToolGroup;assembly=Cognex.VisionPro.ToolGroup.Controls"
  8. xmlns:wf="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
  9. xmlns:Viewlocal="clr-namespace:LampInspectionMachine.ViewModels"
  10. xmlns:local="clr-namespace:LampInspectionMachine.Views"
  11. mc:Ignorable="d"
  12. d:DesignHeight="450" d:DesignWidth="800">
  13. <Grid>
  14. <DockPanel >
  15. <WindowsFormsHost>
  16. <cognexWF1:CogToolGroupEditV2 x:Name="cogToolBlock" />
  17. </WindowsFormsHost>
  18. </DockPanel>
  19. </Grid>
  20. </UserControl>