11 references to
System.Windows.Forms (11)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (4)
733dragRect = RowsInternal[row].DragBounds; 887previousRow = RowsInternal[index - 1]; 956LayoutTransaction.DoLayout(RowsInternal[i], this, PropertyNames.Rows); 1057ToolStripPanelRow row = RowsInternal[i];
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.ToolStripPanelRowCollection.cs (1)
80Add(value[i]);
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.HorizontalRowManager.cs (3)
56Rectangle previousRowBounds = ToolStripPanel.RowsInternal[index - 1].Bounds; 65Rectangle nextRowBounds = ToolStripPanel.RowsInternal[index + 1].Bounds; 67dragBounds.Height += (nextRowBounds.Height >> 2) + Row.Margin.Bottom + ToolStripPanel.RowsInternal[index + 1].Margin.Top;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.VerticalRowManager.cs (3)
57Rectangle previousRowBounds = ToolStripPanel.RowsInternal[index - 1].Bounds; 66Rectangle nextRowBounds = ToolStripPanel.RowsInternal[index + 1].Bounds; 68dragBounds.Width += (nextRowBounds.Width >> 2) + Row.Margin.Right + ToolStripPanel.RowsInternal[index + 1].Margin.Left;