22 lines
976 B
XML
22 lines
976 B
XML
<UserControl
|
|
x:Class="XplorePlane.Views.ImagePanelView"
|
|
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="400"
|
|
d:DesignWidth="250"
|
|
mc:Ignorable="d">
|
|
<Grid Background="#FFFFFF">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</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>
|
|
<ContentControl Grid.Row="1" Content="{Binding ImagePanelContent}" />
|
|
</Grid>
|
|
</UserControl>
|