| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <Window x:Class="Plugins.Vpp.Views.VpTerminalEditorWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="输出终端编辑" Height="680" Width="920"
- WindowStartupLocation="CenterScreen"
- Background="{DynamicResource SecondaryRegionBrush}">
- <DockPanel>
- <!-- 顶部:标题 + 类型筛选 -->
- <Border DockPanel.Dock="Top" Height="44" Background="{DynamicResource RegionBrush}"
- BorderBrush="{DynamicResource BorderBrush}" BorderThickness="0,0,0,1">
- <Grid Margin="10,0">
- <StackPanel Orientation="Horizontal" VerticalAlignment="Center">
- <TextBlock x:Name="TxtTitle" FontSize="14" FontWeight="Bold"
- Foreground="{DynamicResource PrimaryTextBrush}" VerticalAlignment="Center" Margin="0,0,16,0"/>
- <TextBlock Text="勾选要作为输出终端的项(树 = 工具的全部属性/结果,带实时值)" FontSize="11"
- Foreground="{DynamicResource SecondaryTextBrush}" VerticalAlignment="Center"/>
- </StackPanel>
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Center">
- <TextBlock Text="类型筛选:" FontSize="12"
- Foreground="{DynamicResource SecondaryTextBrush}" VerticalAlignment="Center" Margin="0,0,6,0"/>
- <ComboBox x:Name="TypeFilterCombo" Width="180" Height="28" FontSize="12"
- ToolTip="按类型筛选树节点(默认 ALL 显示全部)"/>
- </StackPanel>
- </Grid>
- </Border>
- <!-- 底部按钮 -->
- <Border DockPanel.Dock="Bottom" Height="52" Background="{DynamicResource RegionBrush}"
- BorderBrush="{DynamicResource BorderBrush}" BorderThickness="0,1,0,0">
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="10,0">
- <Button x:Name="BtnOk" Content="确定" Width="88" Height="32" Margin="0,0,8,0" Click="BtnOk_Click"/>
- <Button Content="取消" Width="88" Height="32" Click="BtnCancel_Click"/>
- </StackPanel>
- </Border>
- <!-- 工具属性/结果树 -->
- <TreeView x:Name="TermTree" Margin="8" Background="{DynamicResource RegionBrush}"
- VirtualizingPanel.IsVirtualizing="True"/>
- </DockPanel>
- </Window>
|