2 writes to ToolStripPanelRow
System.Windows.Forms (2)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
1429cell.ToolStripPanelRow = value;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelCell.cs (1)
48ToolStripPanelRow = parent;
26 references to ToolStripPanelRow
System.Windows.Forms (26)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
1413get => ToolStripPanelCell?.ToolStripPanelRow;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelCell.cs (23)
117if (Control is not null && ToolStripPanelRow is not null && Control.ParentInternal == ToolStripPanelRow.ToolStripPanel) 147if (ToolStripPanelRow is not null && ToolStripPanelRow.Orientation == Orientation.Vertical) 270if (draggedControl.Stretch && ToolStripPanelRow is not null) 272if (ToolStripPanelRow.Orientation == Orientation.Horizontal) 274constrainingSize.Width = ToolStripPanelRow.Bounds.Width; 280constrainingSize.Height = ToolStripPanelRow.Bounds.Height; 301if (ToolStripPanelRow is null) 309if (ToolStripPanelRow.Cells[ToolStripPanelRow.Cells.Count - 1] == this) 311Rectangle displayRectangle = ToolStripPanelRow.DisplayRectangle; 312if (ToolStripPanelRow.Orientation == Orientation.Horizontal) 335if (!ToolStripPanelRow.CachedBoundsMode) 355if (ToolStripPanelRow is null) 368if (ToolStripPanelRow.Bounds == Rectangle.Empty) 370ToolStripPanelRow.ToolStripPanel.PerformUpdate(true); 375ToolStripPanelRow.ToolStripPanel.Join(_wrappedToolStrip, newloc); 400_restoreOnVisibleChanged = (ToolStripPanelRow is not null && ((IList)ToolStripPanelRow.Cells).Contains(this)); 407if (ToolStripPanelRow is not null && ((IList)ToolStripPanelRow.Cells).Contains(this)) 409ToolStripPanelRow.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)