2 instantiations of ToolStripPanelRow
System.Windows.Forms (2)
winforms\Managed\System\WinForms\ToolStripPanel.cs (2)
1091row = new ToolStripPanelRow(this); 1109row = new ToolStripPanelRow(this);
57 references to ToolStripPanelRow
System.Windows.Forms (57)
winforms\Managed\System\WinForms\ISupportToolStripPanel.cs (1)
11ToolStripPanelRow ToolStripPanelRow {
winforms\Managed\System\WinForms\ToolStrip.cs (3)
1577internal ToolStripPanelRow ToolStripPanelRow { 1599ToolStripPanelRow ISupportToolStripPanel.ToolStripPanelRow { 1608ToolStripPanelRow oldToolStripPanelRow = ToolStripPanelRow;
winforms\Managed\System\WinForms\ToolStripGrip.cs (1)
93private ToolStripPanelRow ToolStripPanelRow {
winforms\Managed\System\WinForms\ToolStripPanel.cs (35)
251foreach (ToolStripPanelRow row in this.RowsInternal) { 337public ToolStripPanelRow[] Rows { 339ToolStripPanelRow[] rows = new ToolStripPanelRow[RowsInternal.Count]; 587foreach (ToolStripPanelRow row in this.RowsInternal) { 677ToolStripPanelRow row = draggedControl.ToolStripPanelRow; 1015ToolStripPanelRow currentToolStripPanelRow = draggedControl.ToolStripPanelRow; 1047ToolStripPanelRow row = PointToRow(clientLocation); 1063ToolStripPanelRow previousRow = null; 1080Debug.WriteLineIf(ToolStripPanelRow.ToolStripPanelRowCreationDebug.TraceVerbose, "Reusing previous row"); 1090Debug.WriteLineIf(ToolStripPanelRow.ToolStripPanelRowCreationDebug.TraceVerbose, "Inserting a new row at " + index.ToString(CultureInfo.InvariantCulture)); 1097Debug.WriteLineIf(ToolStripPanelRow.ToolStripPanelRowCreationDebug.TraceVerbose, String.Format(CultureInfo.CurrentCulture, "\tThere was a row, but we cant add the control to it, creating/inserting new row.")); 1105Debug.WriteLineIf(ToolStripPanelRow.ToolStripPanelRowCreationDebug.TraceVerbose, String.Format(CultureInfo.CurrentCulture, "\tAttempts to leave the current row failed as there's no space in the next row. Since there's only one control, just keep the row.")); 1200public ToolStripPanelRow PointToRow(Point clientLocation) { 1203foreach (ToolStripPanelRow row in this.RowsInternal) { 1231ToolStripPanelRow row = this.RowsInternal[i]; 1235ToolStripPanelRow currentlyAssignedRow = ((ISupportToolStripPanel)cell.Control).ToolStripPanelRow; 1331public ToolStripPanelRowCollection(ToolStripPanel owner, ToolStripPanelRow[] value) { 1340public new virtual ToolStripPanelRow this[int index] { 1342return (ToolStripPanelRow)(InnerList[index]); 1350public int Add(ToolStripPanelRow value) { 1365public void AddRange(ToolStripPanelRow[] value) { 1416public bool Contains(ToolStripPanelRow value) { 1445void IList.Remove(object value) { Remove(value as ToolStripPanelRow); } 1446int IList.Add(object value) { return Add(value as ToolStripPanelRow); } 1447int IList.IndexOf(object value) { return IndexOf(value as ToolStripPanelRow); } 1448void IList.Insert(int index, object value) { Insert(index, value as ToolStripPanelRow); } 1462public int IndexOf(ToolStripPanelRow value) { 1467public void Insert(int index, ToolStripPanelRow value) { 1477private void OnAdd(ToolStripPanelRow value, int index) { 1486private void OnAfterRemove(ToolStripPanelRow row) { 1504public void Remove(ToolStripPanelRow value) { 1514ToolStripPanelRow item = null; 1516item = (ToolStripPanelRow)(InnerList[index]); 1528public void CopyTo(ToolStripPanelRow[] array, int index) {
winforms\Managed\System\WinForms\ToolStripPanelCell.cs (5)
27private ToolStripPanelRow parent = null; 43public ToolStripPanelCell(ToolStripPanelRow parent, Control control) { 94public ToolStripPanelRow ToolStripPanelRow { 282Debug.WriteLineIf(ToolStripPanelRow.ToolStripPanelMouseDebug.TraceVerbose, "[CELL] DRAGGING calling SetBounds " + bounds.ToString()); 288Debug.WriteLineIf(ToolStripPanelRow.ToolStripPanelMouseDebug.TraceVerbose, "[CELL] NOT DRAGGING calling SetBounds " + bounds.ToString());
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (12)
764private ToolStripPanelRow owner = null; 766public ToolStripPanelRowManager(ToolStripPanelRow owner) { 774Debug.WriteLineIf(ToolStripPanelRow.ToolStripPanelRowCreationDebug.TraceVerbose, "TSP RM CanMove returns false - the item moving is stretched."); 782Debug.WriteLineIf(ToolStripPanelRow.ToolStripPanelRowCreationDebug.TraceVerbose, "TSP RM CanMove returns false - the row already contains a stretched item."); 802public ToolStripPanelRow Row { 928public HorizontalRowManager(ToolStripPanelRow owner): base (owner) { 998Debug.WriteLineIf(ToolStripPanelRow.ToolStripPanelRowCreationDebug.TraceVerbose, "HorizontalRM.CanMove returns false - not enough room"); 1438public VerticalRowManager(ToolStripPanelRow owner): base (owner) { 1510Debug.WriteLineIf(ToolStripPanelRow.ToolStripPanelRowCreationDebug.TraceVerbose, "VerticalRM.CanMove returns false - not enough room"); 1998private ToolStripPanelRow owner; 2002public ToolStripPanelRowControlCollection(ToolStripPanelRow owner) { 2008public ToolStripPanelRowControlCollection(ToolStripPanelRow owner, Control[] value) {