2025-01-05 08:52:37 +08:00
|
|
|
<UserControl x:Class="Serein.Workbench.Node.View.DllControl"
|
|
|
|
|
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"
|
|
|
|
|
xmlns:local="clr-namespace:Serein.Workbench.Node.View"
|
|
|
|
|
>
|
|
|
|
|
<DockPanel>
|
|
|
|
|
<StackPanel DockPanel.Dock="Top" >
|
|
|
|
|
<TextBlock Text="{Binding Path=Header, RelativeSource={RelativeSource AncestorType=UserControl}}"
|
|
|
|
|
FontWeight="Bold" FontSize="14" Margin="5" Background="#dbe2ef"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<DockPanel>
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
2025-03-14 16:04:06 +08:00
|
|
|
<RowDefinition Height="*"/>
|
2025-01-05 08:52:37 +08:00
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
|
|
<GroupBox x:Name="ActionNodeGroupBox" Grid.Row="0" Header="动作" Margin="5" >
|
|
|
|
|
<ListBox x:Name="ActionsListBox" Background="#D0F1F9"/>
|
|
|
|
|
</GroupBox>
|
|
|
|
|
<GroupBox x:Name="FlipflopNodeGroupBox" Grid.Row="1" Header="触发器" Margin="5">
|
|
|
|
|
<ListBox x:Name="FlipflopsListBox" Background="#FACFC1"/>
|
|
|
|
|
</GroupBox>
|
2025-03-14 16:04:06 +08:00
|
|
|
<GroupBox x:Name="UINodeGroupBox" Grid.Row="2" Header="UI" Margin="5">
|
|
|
|
|
<ListBox x:Name="UIListBox" Background="#FFFBD7"/>
|
|
|
|
|
</GroupBox>
|
2025-01-05 08:52:37 +08:00
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</DockPanel>
|
|
|
|
|
</DockPanel>
|
|
|
|
|
</UserControl>
|