Page.xaml
上传用户:lvyingde
上传日期:2018-04-24
资源大小:610k
文件大小:1k
- <UserControl x:Class="wxwinter.WFDesignerSl.Page"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mycontrol="clr-namespace:wxwinter.WFDesignerSl"
- Width="1000" Height="700"
- >
- <Canvas Name="root" Background="White">
-
- <StackPanel Orientation="Horizontal" Grid.Row="0" Height="30" Canvas.Top="0">
- <Button Name="createButton" Click="createButton_Click" Content="新建流程" Width="120" />
- <Button Name="addButton" Click="addButton_Click" Content="添加等待结点" Width="120" />
- </StackPanel>
-
- <mycontrol:DesignerControl Name="myDesigner" Canvas.Top="30" />
- </Canvas>
- </UserControl>