mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-02 15:50:47 +08:00
21 lines
1.0 KiB
Plaintext
21 lines
1.0 KiB
Plaintext
|
|
<local:NodeControlBase x:Class="Serein.WorkBench.Node.View.ExpOpNodeControl"
|
||
|
|
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"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
||
|
|
<Grid>
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="*"/>
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<!--<TextBlock Grid.Row="0" Text=""></TextBlock>-->
|
||
|
|
|
||
|
|
<StackPanel Grid.Row="0" Orientation="Vertical" Background="LightSteelBlue">
|
||
|
|
<TextBlock Grid.Row="2" Text="表达式"></TextBlock>
|
||
|
|
<TextBox Text="{Binding Expression, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Stretch"></TextBox>
|
||
|
|
</StackPanel>
|
||
|
|
</Grid>
|
||
|
|
</local:NodeControlBase>
|