1234567891011121314151617181920 |
- <UserControl x:Class="LampInspectionMachine.Views.VisionProView"
- 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:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:cognexWF="clr-namespace:Cognex.VisionPro;assembly=Cognex.VisionPro.Controls"
- xmlns:cognexWF1="clr-namespace:Cognex.VisionPro.ToolGroup;assembly=Cognex.VisionPro.ToolGroup.Controls"
- xmlns:wf="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
- xmlns:Viewlocal="clr-namespace:LampInspectionMachine.ViewModels"
- xmlns:local="clr-namespace:LampInspectionMachine.Views"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid>
- <DockPanel >
- <WindowsFormsHost>
- <cognexWF1:CogToolGroupEditV2 x:Name="cogToolBlock" />
- </WindowsFormsHost>
- </DockPanel>
- </Grid>
- </UserControl>
|