46 references to Owner
System.Windows.Forms (46)
winforms\Managed\System\WinForms\ToolStrip.cs (9)
4990if (child.Owner == owner.Grip) { 4995var placement = child.Owner.Placement; 5002if (owner.CanOverflow && owner.OverflowButton.Visible && child.Owner == owner.OverflowButton) { 5013if (item.Available && item.Alignment == ToolStripItemAlignment.Left && child.Owner == items[index]) { 5021if (item.Available && item.Alignment == ToolStripItemAlignment.Right && child.Owner == items[index]) { 5036if (child.Owner == owner.Grip) { 5042if (owner.CanOverflow && owner.OverflowButton.Visible && child.Owner == owner.OverflowButton) { 5049if (child.Owner == owner.Items[i]) { 5059if (child.Owner == owner.Items[i]) {
winforms\Managed\System\WinForms\ToolStripComboBox.cs (1)
102AccessibleRole role = Owner.AccessibleRole;
winforms\Managed\System\WinForms\ToolStripDropDownItem.cs (3)
786AccessibleRole role = Owner.AccessibleRole; 797ToolStripDropDownItem item = Owner as ToolStripDropDownItem; 885if (owner.DropDownItems[i].Available && child.Owner == owner.DropDownItems[i]) {
winforms\Managed\System\WinForms\ToolStripGrip.cs (2)
267string name = Owner.AccessibleName; 284AccessibleRole role = Owner.AccessibleRole;
winforms\Managed\System\WinForms\ToolStripItem.cs (27)
4108QueryAccessibilityHelpEventHandler handler = (QueryAccessibilityHelpEventHandler)Owner.Events[ToolStripItem.EventQueryAccessibilityHelp]; 4112handler(Owner, args); 4292if (Owner != null) { 4293((ToolStripItem)Owner).PerformClick(); 4303QueryAccessibilityHelpEventHandler handler = (QueryAccessibilityHelpEventHandler)Owner.Events[ToolStripItem.EventQueryAccessibilityHelp]; 4307handler(Owner, args); 4332if (Owner != null) { 4333ToolStrip parent = Owner.ParentInternal; 4348nextItem = parent.GetNextItem(Owner, ArrowDirection.Left, /*RTLAware=*/true); 4352nextItem = parent.GetNextItem(Owner, ArrowDirection.Right, /*RTLAware=*/true); 4355nextItem = (Owner.IsOnDropDown) ? parent.GetNextItem(Owner, ArrowDirection.Up): 4356parent.GetNextItem(Owner, ArrowDirection.Left, /*RTLAware=*/true); 4359nextItem = (Owner.IsOnDropDown) ? parent.GetNextItem(Owner, ArrowDirection.Down): 4360parent.GetNextItem(Owner, ArrowDirection.Right, /*RTLAware=*/true); 4388if (Owner != null) { 4389return "ToolStripItemAccessibleObject: Owner = " + Owner.ToString(); 4403Rectangle bounds = Owner.Bounds; 4404if (Owner.ParentInternal != null && 4405Owner.ParentInternal.Visible) { 4406return new Rectangle(Owner.ParentInternal.PointToScreen(bounds.Location), bounds.Size); 4420if (Owner.IsOnDropDown) { 4422ToolStripDropDown dropDown = Owner.GetCurrentParentDropDown(); 4428return (Owner.Parent != null) ? Owner.Parent.AccessibilityObject : base.Parent; 4554Owner.Select();
winforms\Managed\System\WinForms\ToolStripLabel.cs (1)
400AccessibleRole role = Owner.AccessibleRole;
winforms\Managed\System\WinForms\ToolStripOverflowButton.cs (1)
152string name = Owner.AccessibleName;
winforms\Managed\System\WinForms\ToolStripProgressBar.cs (1)
500AccessibleRole role = Owner.AccessibleRole;
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
136AccessibleRole role = Owner.AccessibleRole;