63 lines
2.1 KiB
XML
63 lines
2.1 KiB
XML
<UserControl
|
|
x:Class="XplorePlane.Views.NavigationPropertyPanelView"
|
|
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"
|
|
d:DesignHeight="424"
|
|
d:DesignWidth="400"
|
|
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>
|
|
|
|
<!-- 相机图像显示区域 -->
|
|
<Border
|
|
Grid.Row="1"
|
|
Background="#000000"
|
|
BorderBrush="#CCCCCC"
|
|
BorderThickness="1">
|
|
<Image
|
|
x:Name="imgCamera"
|
|
Source="{Binding CameraImageSource}"
|
|
Stretch="Uniform"
|
|
StretchDirection="Both"
|
|
RenderOptions.BitmapScalingMode="HighQuality"
|
|
MouseLeftButtonDown="ImgCamera_MouseLeftButtonDown" />
|
|
</Border>
|
|
|
|
<!-- 状态信息 -->
|
|
<Border
|
|
Grid.Row="2"
|
|
Background="#000000"
|
|
Height="24"
|
|
Padding="8,0">
|
|
<TextBlock
|
|
VerticalAlignment="Center"
|
|
FontSize="12">
|
|
<Run Foreground="#FFFFFF" Text="{Binding CameraStatusText, Mode=OneWay}" />
|
|
<Run Text=" " />
|
|
<Run Foreground="#0078D4" Text="{Binding CameraPixelCoord, Mode=OneWay}" />
|
|
</TextBlock>
|
|
</Border>
|
|
</Grid>
|
|
</UserControl>
|