1 implementation of ToolStripPanelRow
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
1414ToolStripPanelRow? ISupportToolStripPanel.ToolStripPanelRow
3 writes to ToolStripPanelRow
System.Windows.Forms (3)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.cs (2)
298controlToBeDragged.ToolStripPanelRow = this; 327controlToBeDragged.ToolStripPanelRow = null;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.ToolStripPanelRowControlCollection.cs (1)
247controlToBeDragged.ToolStripPanelRow = _owner;
17 references to ToolStripPanelRow
System.Windows.Forms (17)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
1397internal ToolStripPanelRow? ToolStripPanelRow => ((ISupportToolStripPanel)this).ToolStripPanelRow;
System\Windows\Forms\Controls\ToolStrips\ToolStripGrip.cs (1)
66return (ParentInternal is null) ? null : ((ISupportToolStripPanel)ParentInternal).ToolStripPanelRow;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (12)
474controlToBeDragged.ToolStripPanelRow?.ControlsInternal.Remove(e.Control); 484if (e.AffectedComponent is ISupportToolStripPanel draggedControl && RowsInternal.Contains(draggedControl.ToolStripPanelRow!)) 488LayoutTransaction.DoLayout(draggedControl.ToolStripPanelRow, e.AffectedComponent as IArrangedElement, e.AffectedProperty); 627&& draggedControl.ToolStripPanelRow is not null 630ToolStripPanelRow row = draggedControl.ToolStripPanelRow; 831ToolStripPanelRow? currentToolStripPanelRow = draggedControl.ToolStripPanelRow; 855draggedControl.ToolStripPanelRow?.MoveControl(toolStripToDrag, GetStartLocation(toolStripToDrag), clientLocation); 903draggedControl.ToolStripPanelRow?.MoveControl(toolStripToDrag, GetStartLocation(toolStripToDrag), endLocation); 1062ToolStripPanelRow? currentlyAssignedRow = ((ISupportToolStripPanel)cell.Control).ToolStripPanelRow; 1106int rowIndex = rows.IndexOf(draggedToolStrip.ToolStripPanelRow!); 1113{c1.Name ?? ""}: {c1.Bounds} row {GetRow(draggedToolStrip1, RowsInternal)} row bounds {draggedToolStrip1.ToolStripPanelRow?.Bounds} 1114{c2.Name ?? ""}: {c2.Bounds} row {GetRow(draggedToolStrip2, RowsInternal)} row bounds {draggedToolStrip2.ToolStripPanelRow?.Bounds}");
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.cs (1)
325if (control is ISupportToolStripPanel controlToBeDragged && controlToBeDragged.ToolStripPanelRow == this)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.HorizontalRowManager.cs (1)
529Debug.Assert(ctg.ToolStripPanelRow == Row, "we should now be in the new panel row.");
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.VerticalRowManager.cs (1)
539Debug.Assert(ctg.ToolStripPanelRow == Row, "we should now be in the new panel row.");