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

SilverLight

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Net;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using System.Windows.Documents;
  8. using System.Windows.Input;
  9. using System.Windows.Media;
  10. using System.Windows.Media.Animation;
  11. using System.Windows.Shapes;
  12. namespace wxwinter.WFDesignerSl
  13. {
  14.     public partial class Page : UserControl
  15.     {
  16.         public Page()
  17.         {
  18.             InitializeComponent();
  19.             myContext.root = this.root;
  20.         }
  21.         bool b = false;
  22.         private void createButton_Click(object sender, RoutedEventArgs e)
  23.         {
  24.             myDesigner.Clear(true);
  25.             b = true;
  26.         }
  27.         private void addButton_Click(object sender, RoutedEventArgs e)
  28.         {
  29.             if (b)
  30.             {
  31.                 WaitControl wc = new WaitControl() { X坐标 = 150, Y坐标 = 200, 类型 = "节" };
  32.                 SetWindowWaitControl swc = new SetWindowWaitControl(wc, myDesigner.NameList, myDesigner);
  33.                 root.Children.Add(swc);
  34.                
  35.             }
  36.             else
  37.             {
  38.                 MessageBox.Show("请先创建流程");
  39.             }
  40.         }
  41.     }
  42. }