2 writes to itemStrip
System.Workflow.ComponentModel (2)
AuthoringOM\Design\DesignerWidgets.cs (2)
2920this.itemStrip = itemStrip; 2926this.itemStrip = itemStrip;
20 references to itemStrip
System.Workflow.ComponentModel (20)
AuthoringOM\Design\DesignerWidgets.cs (20)
2937bounds = this.itemStrip.GetButtonBounds(ScrollButton.Left); 2941bounds = this.itemStrip.GetButtonBounds(ScrollButton.Right); 2945int index = this.itemStrip.scrollMarker + this.itemIndex; 2946bounds = (index >= 0 && index < this.itemStrip.Items.Count) ? this.itemStrip.GetItemBounds(this.itemStrip.Items[index]) : Rectangle.Empty; 2951WorkflowView workflowView = this.itemStrip.parentDesigner.Activity.Site.GetService(typeof(WorkflowView)) as WorkflowView; 3052return this.itemStrip.parentDesigner.AccessibilityObject; 3105AccessibleObject[] accessibleObjects = this.itemStrip.AccessibilityObjects; 3119return this.itemStrip.parentDesigner.AccessibilityObject; 3123int accessibilityObjectCount = this.itemStrip.AccessibilityObjects.Length; 3124int childCount = this.itemStrip.parentDesigner.AccessibilityObject.GetChildCount(); 3126return this.itemStrip.parentDesigner.AccessibilityObject.GetChild(accessibilityObjectCount); 3128return this.itemStrip.parentDesigner.AccessibilityObject.Navigate(navdir); 3163int index = this.itemStrip.scrollMarker + this.itemIndex; 3164ItemInfo itemInfo = (index >= 0 && index < this.itemStrip.Items.Count) ? this.itemStrip.Items[index] : null; 3174if (this.itemStrip.parentDesigner.Activity != null || this.itemStrip.parentDesigner.Activity.Site != null) 3175return this.itemStrip.parentDesigner.Activity.Site.GetService(serviceType);