Page.xaml
上传用户:lvyingde
上传日期:2018-04-24
资源大小:610k
文件大小:1k
源码类别:

SilverLight

开发平台:

C#

  1. <UserControl x:Class="wxwinter.WFDesignerSl.Page"
  2.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  3.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
  4.     xmlns:mycontrol="clr-namespace:wxwinter.WFDesignerSl"
  5.     Width="1000" Height="700"
  6.    >
  7.     <Canvas Name="root" Background="White">
  8.         
  9.         <StackPanel Orientation="Horizontal"  Grid.Row="0" Height="30" Canvas.Top="0">
  10.             <Button Name="createButton" Click="createButton_Click" Content="新建流程" Width="120" />
  11.             <Button Name="addButton" Click="addButton_Click" Content="添加等待结点" Width="120" />
  12.         </StackPanel>
  13.         
  14.         <mycontrol:DesignerControl Name="myDesigner"  Canvas.Top="30"  />
  15.     </Canvas>
  16. </UserControl>