2 writes to ToolStripPanelRow
System.Windows.Forms (2)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
1432cell.ToolStripPanelRow = value;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelCell.cs (1)
46ToolStripPanelRow = parent;
26 references to ToolStripPanelRow
System.Windows.Forms (26)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
1416get => ToolStripPanelCell?.ToolStripPanelRow;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelCell.cs (23)
115if (Control is not null && ToolStripPanelRow is not null && Control.ParentInternal == ToolStripPanelRow.ToolStripPanel) 145if (ToolStripPanelRow is not null && ToolStripPanelRow.Orientation == Orientation.Vertical) 268if (draggedControl.Stretch && ToolStripPanelRow is not null) 270if (ToolStripPanelRow.Orientation == Orientation.Horizontal) 272constrainingSize.Width = ToolStripPanelRow.Bounds.Width; 278constrainingSize.Height = ToolStripPanelRow.Bounds.Height; 299if (ToolStripPanelRow is null) 307if (ToolStripPanelRow.Cells[ToolStripPanelRow.Cells.Count - 1] == this) 309Rectangle displayRectangle = ToolStripPanelRow.DisplayRectangle; 310if (ToolStripPanelRow.Orientation == Orientation.Horizontal) 333if (!ToolStripPanelRow.CachedBoundsMode) 353if (ToolStripPanelRow is null) 366if (ToolStripPanelRow.Bounds == Rectangle.Empty) 368ToolStripPanelRow.ToolStripPanel.PerformUpdate(true); 373ToolStripPanelRow.ToolStripPanel.Join(_wrappedToolStrip, newloc); 398_restoreOnVisibleChanged = (ToolStripPanelRow is not null && ((IList)ToolStripPanelRow.Cells).Contains(this)); 405if (ToolStripPanelRow is not null && ((IList)ToolStripPanelRow.Cells).Contains(this)) 407ToolStripPanelRow.ToolStripPanel.Join(_wrappedToolStrip, _wrappedToolStrip.Location);
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.ToolStripPanelRowManager.cs (2)
91if ((cell.Visible || (Row.ToolStripPanel.Visible && cell.ControlInDesignMode)) && cell.ToolStripPanelRow == Row) 102if ((cell.Visible || (Row.ToolStripPanel.Visible && cell.ControlInDesignMode)) && cell.ToolStripPanelRow == Row)