1 write to view
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.cs (1)
113this.view = new Grid();
19 references to view
System.Activities.Presentation (19)
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.cs (16)
114this.view.Focusable = false; 180this.view.Children.Clear(); 181this.view.Children.Add(errorView); 194this.view.Loaded += (s, e) => 200Window ownerWindow = Window.GetWindow(this.view); 209whs.View = this.view; 222this.view.Unloaded += (s, e) => 228this.view.IsKeyboardFocusWithinChanged += (s, e) => 234if ((FocusManager.GetFocusedElement(this.view) as TextBox) != null) 236FocusManager.SetFocusedElement(this.view, null); 274return this.view; 544view.Children.Add((UIElement)viewManager.View); 548this.view.Dispatcher.BeginInvoke(DispatcherPriority.ApplicationIdle, 644if (null != this.view && this.view.IsKeyboardFocusWithin) 646oldFocus = FocusManager.GetFocusedElement(this.view) as UIElement;
System.Activities.Presentation\System\Activities\Presentation\WorkflowDesigner.Helpers.cs (3)
105if (!this.view.Children.Contains((UIElement)this.viewManager.View)) 107this.view.Children.Clear(); 108this.view.Children.Add((UIElement)this.viewManager.View);