Ejemplo n.º 1
0
 static void Main()
 {
     HostView hostView = new HostView();
     WorkflowApplicationManager manager = new WorkflowApplicationManager(hostView);
     Application application = new Application();
     application.Run(hostView);
 }
Ejemplo n.º 2
0
        static void Main()
        {
            HostView hostView = new HostView();
            WorkflowApplicationManager manager = new WorkflowApplicationManager(hostView);
            Application application            = new Application();

            application.Run(hostView);
        }
Ejemplo n.º 3
0
 public void Initialize(WorkflowApplicationManager manager)
 {
     this.manager = manager;
     this.manager.Open();
     this.DataContextChanged         += new DependencyPropertyChangedEventHandler(OnDataContextChanged);
     this.defaultView                 = CollectionViewSource.GetDefaultView(this.instanceInfos);
     this.DataContext                 = this.instanceInfos;
     this.defaultView.CurrentChanged += new EventHandler(OnCurrentChanged);
 }
Ejemplo n.º 4
0
 public void Initialize(WorkflowApplicationManager manager)
 {
     this.manager = manager;
     this.manager.Open();
     this.DataContextChanged += new DependencyPropertyChangedEventHandler(OnDataContextChanged);
     this.defaultView = CollectionViewSource.GetDefaultView(this.instanceInfos);
     this.DataContext = this.instanceInfos;
     this.defaultView.CurrentChanged += new EventHandler(OnCurrentChanged);
 }