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