mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
41 lines
1.7 KiB
Plaintext
41 lines
1.7 KiB
Plaintext
|
|
<Window x:Class="Serein.Workbench.Views.FlowWorkbenchView"
|
||
|
|
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"
|
||
|
|
xmlns:local="clr-namespace:Serein.Workbench.Views"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
Loaded="Window_Loaded"
|
||
|
|
Title="FlowWorkbenchView" Height="450" Width="800">
|
||
|
|
<Grid>
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="auto"/>
|
||
|
|
<RowDefinition Height="*"/>
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<Grid.ColumnDefinitions>
|
||
|
|
<ColumnDefinition Width="250"/>
|
||
|
|
<ColumnDefinition Width="5"/>
|
||
|
|
<ColumnDefinition Width="3*"/>
|
||
|
|
<ColumnDefinition Width="5"/>
|
||
|
|
<ColumnDefinition Width="*"/>
|
||
|
|
</Grid.ColumnDefinitions>
|
||
|
|
<!--顶部菜单栏-->
|
||
|
|
<local:MainMenuBarView Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="5"/>
|
||
|
|
|
||
|
|
<!--左侧功能区-->
|
||
|
|
<Grid Grid.Row="1" Grid.Column="0" >
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="auto"></RowDefinition>
|
||
|
|
<RowDefinition Height="*"></RowDefinition>
|
||
|
|
<!--<RowDefinition Height="3"></RowDefinition>-->
|
||
|
|
<!--<RowDefinition Height="3*"></RowDefinition>-->
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<local:BaseNodesView Grid.Row="0" Grid.ColumnSpan="1" Margin="0,0,0,15"/>
|
||
|
|
<local:FlowLibrarysView Grid.Row="1" Grid.ColumnSpan="1" Margin="0,0,0,15"/>
|
||
|
|
</Grid>
|
||
|
|
|
||
|
|
<!--流程编辑区-->
|
||
|
|
<local:FlowEditView Grid.Row="1" Grid.Column="2"/>
|
||
|
|
</Grid>
|
||
|
|
</Window>
|