31 references to Strip
System.Windows.Forms (31)
winforms\Managed\System\WinForms\Layout\TableLayout.cs (27)
310Strip[] rows = containerInfo.Rows; 311Strip[] cols = containerInfo.Columns; 531containerInfo.Rows = new Strip[numRows]; 534containerInfo.Columns = new Strip[numColumns]; 671private void InitializeStrips(Strip[] strips, IList styles) { 672Strip strip; 760Strip[] strips = containerInfo.Columns; 766Strip strip = strips[i]; 865internal int SumStrips(Strip[] strips, int start, int span) { 868Strip strip = strips[i]; 875private void DistributeSize(IList styles, Strip[] strips, int start, int stop, int min, int max, int cellBorderWidth) { 882private void xDistributeSize(IList styles, Strip[] strips, int start, int stop, int desiredLength, SizeProxy sizeProxy, int cellBorderWidth) { 986private int DistributeStyles(int cellBorderWidth, IList styles, Strip[] strips, int maxSize, bool dontHonorConstraint) { 1003Strip strip = strips[i]; 1070Strip strip = strips[i]; 1092Strip strip = strips[i]; 1132Strip strip = strips[i]; 1463private static Strip[] emptyStrip = new Strip[0]; 1471private Strip[] _cols = emptyStrip; 1472private Strip[] _rows = emptyStrip; 1528public Strip[] Columns { 1539public Strip[] Rows { 1796protected Strip strip; 1797public Strip Strip { 2067Strip[] rows = containerInfo.Rows; 2068Strip[] columns = containerInfo.Columns;
winforms\Managed\System\WinForms\TableLayoutPanel.cs (4)
401TableLayout.Strip[] colStrips = containerInfo.Columns; 402TableLayout.Strip[] rowStrips = containerInfo.Rows; 437Rectangle outsideCellBounds = new Rectangle(startx, starty, ((TableLayout.Strip)colStrips[i]).MinSize, ((TableLayout.Strip)rowStrips[j]).MinSize);