1 implementation of ToolStripPanelRow
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ToolStrip.cs (1)
1599ToolStripPanelRow ISupportToolStripPanel.ToolStripPanelRow {
3 writes to ToolStripPanelRow
System.Windows.Forms (3)
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (3)
304controlToBeDragged.ToolStripPanelRow = this; 331controlToBeDragged.ToolStripPanelRow = null; 2223controlToBeDragged.ToolStripPanelRow = owner;
20 references to ToolStripPanelRow
System.Windows.Forms (20)
winforms\Managed\System\WinForms\ToolStrip.cs (1)
1578get { return ((ISupportToolStripPanel)this).ToolStripPanelRow; }
winforms\Managed\System\WinForms\ToolStripGrip.cs (1)
95return (ParentInternal == null) ? null : ((ISupportToolStripPanel)ParentInternal).ToolStripPanelRow;
winforms\Managed\System\WinForms\ToolStripPanel.cs (17)
543if (controlToBeDragged.ToolStripPanelRow != null/* && controlToBeDragged.ToolStripPanelRow != owner*/) { 544controlToBeDragged.ToolStripPanelRow.ControlsInternal.Remove(e.Control); 554if (draggedControl != null && this.RowsInternal.Contains(draggedControl.ToolStripPanelRow)) { 557LayoutTransaction.DoLayout(draggedControl.ToolStripPanelRow, e.AffectedComponent as IArrangedElement, e.AffectedProperty); 676if (draggedControl != null && draggedControl.ToolStripPanelRow != null && !draggedControl.IsCurrentlyDragging) { 677ToolStripPanelRow row = draggedControl.ToolStripPanelRow; 1015ToolStripPanelRow currentToolStripPanelRow = draggedControl.ToolStripPanelRow; 1037Debug.WriteLineIf(ToolStripPanelDebug.TraceVerbose, "RC.MoveControl - Point " + clientLocation + "is in the same row as the control" + draggedControl.ToolStripPanelRow.DragBounds); 1038draggedControl.ToolStripPanelRow.MoveControl(toolStripToDrag, GetStartLocation(toolStripToDrag), clientLocation); 1084draggedControl.ToolStripPanelRow.MoveControl(toolStripToDrag, GetStartLocation(toolStripToDrag), endLocation); 1235ToolStripPanelRow currentlyAssignedRow = ((ISupportToolStripPanel)cell.Control).ToolStripPanelRow; 1287!RowsInternal.Contains(draggedToolStrip1.ToolStripPanelRow) ? "unknown" : RowsInternal.IndexOf(draggedToolStrip1.ToolStripPanelRow).ToString(CultureInfo.CurrentCulture), 1288draggedToolStrip1.ToolStripPanelRow.Bounds); 1294!RowsInternal.Contains(draggedToolStrip2.ToolStripPanelRow) ? "unknown" : RowsInternal.IndexOf(draggedToolStrip2.ToolStripPanelRow).ToString(CultureInfo.CurrentCulture), 1295draggedToolStrip2.ToolStripPanelRow.Bounds);
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (1)
330 if (controlToBeDragged != null && controlToBeDragged.ToolStripPanelRow == this) {