You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<UserControl x:Class="Kingo.Plugin.General.View.UCImgView"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
xmlns:cefSharp="clr-namespace:CefSharp.Wpf;assembly=CefSharp.Wpf"
|
|
|
|
|
mc:Ignorable="d"
|
|
|
|
|
d:DesignHeight="400" d:DesignWidth="500">
|
|
|
|
|
<Grid Background="White" DataContext="{Binding CurrentAttach}">
|
|
|
|
|
<!--<imageView:ImageView x:Name="ucImgXZZP"></imageView:ImageView>-->
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="50" />
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<cefSharp:ChromiumWebBrowser x:Name="mapBrowser" Grid.ColumnSpan="2" />
|
|
|
|
|
<CheckBox x:Name="cbIsCheck" Focusable="False" VerticalAlignment="Top" Margin="0,26,0,0" Checked="cbIsCheck_Checked" Unchecked="cbIsCheck_Unchecked">
|
|
|
|
|
<CheckBox.LayoutTransform>
|
|
|
|
|
<ScaleTransform ScaleX="3" ScaleY="3" />
|
|
|
|
|
</CheckBox.LayoutTransform>
|
|
|
|
|
</CheckBox>
|
|
|
|
|
</Grid>
|
|
|
|
|
</UserControl>
|