Files
XplorePlane/XP.ImageProcessing.CfgControl/ProcessorParameterControl.xaml
T
2026-04-13 14:36:18 +08:00

38 lines
1.5 KiB
XML

<UserControl x:Class="XP.ImageProcessing.CfgControl.ProcessorParameterControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="400" d:DesignWidth="380">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<!-- 算子信息 -->
<Border Grid.Row="0"
Background="Transparent"
BorderBrush="#FFD5DFE5"
BorderThickness="1"
Padding="10"
Margin="0,0,0,10">
<StackPanel>
<TextBlock x:Name="txtProcessorName"
FontSize="14"
FontWeight="Bold" />
<TextBlock x:Name="txtProcessorDescription"
FontSize="12"
Foreground="Gray"
TextWrapping="Wrap"
Margin="0,5,0,0" />
</StackPanel>
</Border>
<!-- 参数列表 -->
<ScrollViewer Grid.Row="1" VerticalScrollBarVisibility="Auto">
<StackPanel x:Name="pnlParameters" Margin="5" />
</ScrollViewer>
</Grid>
</UserControl>