38 lines
1.6 KiB
XML
38 lines
1.6 KiB
XML
<UserControl
|
|
x:Class="XplorePlane.Views.ViewportPanelView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:prism="http://prismlibrary.com/"
|
|
xmlns:roi="clr-namespace:XP.ImageProcessing.RoiControl.Controls;assembly=XP.ImageProcessing.RoiControl"
|
|
prism:ViewModelLocator.AutoWireViewModel="True"
|
|
d:DesignHeight="400"
|
|
d:DesignWidth="600"
|
|
mc:Ignorable="d">
|
|
<Grid Background="#FFFFFF">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- 标题栏 -->
|
|
<Border Grid.Row="0" Background="#F0F0F0" BorderBrush="#DDDDDD" BorderThickness="0,0,0,1">
|
|
<TextBlock Margin="8,4" HorizontalAlignment="Left" VerticalAlignment="Center"
|
|
FontWeight="SemiBold" Foreground="#333333" Text="实时图像" />
|
|
</Border>
|
|
|
|
<!-- 图像显示区域,支持滚动、缩放和ROI -->
|
|
<roi:PolygonRoiCanvas Grid.Row="1"
|
|
ImageSource="{Binding ImageSource}"
|
|
Background="White" />
|
|
|
|
<!-- 图像信息栏 -->
|
|
<Border Grid.Row="2" Background="#F0F0F0" BorderBrush="#DDDDDD" BorderThickness="0,1,0,0">
|
|
<TextBlock Margin="8,2" FontSize="11" Foreground="#666666"
|
|
Text="{Binding ImageInfo}" />
|
|
</Border>
|
|
</Grid>
|
|
</UserControl>
|