| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <UserControl x:Class="TeamAAS_VP.Views.Home.ImagePreviewWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:prism="http://prismlibrary.com/"
- xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
- xmlns:b="http://schemas.microsoft.com/xaml/behaviors"
- xmlns:wf="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
- xmlns:vp="clr-namespace:Cognex.VisionPro;assembly=Cognex.VisionPro.Controls"
- xmlns:lex="http://wpflocalizeextension.codeplex.com"
- lex:LocalizeDictionary.DesignCulture="zh-CN"
- Height="800"
- Width="1000"
- lex:ResxLocalizationProvider.DefaultAssembly="TeamAAS-VP"
- lex:ResxLocalizationProvider.DefaultDictionary="Lang"
- prism:ViewModelLocator.AutoWireViewModel="True"
- FontFamily="{DynamicResource DefaultFont}">
- <b:Interaction.Triggers>
- <b:EventTrigger EventName="Loaded">
- <b:InvokeCommandAction Command="{Binding LoadedCommand}" />
- </b:EventTrigger>
- </b:Interaction.Triggers>
- <prism:Dialog.WindowStyle>
- <Style TargetType="Window">
- <Setter Property="prism:Dialog.WindowStartupLocation"
- Value="CenterScreen" />
- <Setter Property="WindowStyle"
- Value="SingleBorderWindow" />
- <Setter Property="ResizeMode"
- Value="NoResize" />
- <Setter Property="SizeToContent"
- Value="Manual" />
- <Setter Property="AllowDrop"
- Value="True" />
- <Setter Property="BorderThickness"
- Value="0" />
- <Setter Property="ShowInTaskbar"
- Value="True" />
- <Setter Property="SizeToContent"
- Value="WidthAndHeight" />
- <Setter Property="WindowState"
- Value="Normal" />
- <Setter Property="Topmost"
- Value="True" />
- </Style>
- </prism:Dialog.WindowStyle>
- <Grid x:Name="gridRender">
- <wf:WindowsFormsHost>
- <vp:CogRecordDisplay x:Name="display"/>
- </wf:WindowsFormsHost>
- </Grid>
- </UserControl>
|