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