9 writes to MinSize
System.Windows.Forms (9)
winforms\Managed\System\WinForms\Layout\TableLayout.cs (9)
313
cols[cols.Length - 1].
MinSize
+= totalSpace.Width - usedSpace.Width;
316
rows[rows.Length - 1].
MinSize
+= totalSpace.Height - usedSpace.Height;
677
strip.
MinSize
= (int)Math.Round((double)((TableLayoutStyle)styles[i]).Size);
681
strip.
MinSize
= 0;
787
strips[i].
MinSize
-= (int) (percentageOfTotal * stealAmount);
1027
strip.
MinSize
+= cellBorderWidth; //add the padding for the cell border
1080
strip.
MinSize
= stripSize + cellBorderWidth;
1139
strip.
MinSize
+= delta;
1811
set { strip.
MinSize
= value; }
29 references to MinSize
System.Windows.Forms (29)
winforms\Managed\System\WinForms\Layout\TableLayout.cs (18)
678
strip.MaxSize = strip.
MinSize
;
771
totalPercentAllocatedSpace += strip.
MinSize
;
869
size += strip.
MinSize
;
1008
totalAbsoluteAndAutoSizeAllocatedSpace += strip.
MinSize
;
1010
Debug.Assert((strip.
MinSize
== style.Size), "absolutely sized strip's size should be set before we call ApplyStyles");
1014
totalPercentAllocatedSpace += strip.
MinSize
;
1017
totalAbsoluteAndAutoSizeAllocatedSpace += strip.
MinSize
;
1030
usedSpace += strip.
MinSize
;
1078
usedSpace -= strip.
MinSize
; // back out the size we thought we were allocating before.
1106
int totalWidth = (int)Math.Round(((strip.
MinSize
* totalPercent)/ style.Size));
1108
usedSpace -= strip.
MinSize
;
1135
int delta = Math.Min(strip.MaxSize - strip.
MinSize
, remainingSpace);
1178
top += containerInfo.Rows[currentRow].
MinSize
;
1188
startX -= containerInfo.Columns[currentCol].
MinSize
;
1191
startX += containerInfo.Columns[currentCol].
MinSize
;
1200
width += containerInfo.Columns[currentCol].
MinSize
;
1212
height += containerInfo.Rows[rowIndex].
MinSize
;
1810
get { return strip.
MinSize
; }
winforms\Managed\System\WinForms\TableLayoutPanel.cs (11)
331
cw[i] = containerInfo.Columns[i].
MinSize
;
349
rh[i] = containerInfo.Rows[i].
MinSize
;
433
startx -= colStrips[i].
MinSize
;
437
Rectangle outsideCellBounds = new Rectangle(startx, starty, ((TableLayout.Strip)colStrips[i]).
MinSize
, ((TableLayout.Strip)rowStrips[j]).
MinSize
);
449
starty += rowStrips[j].
MinSize
;
452
totalColumnHeights += rowStrips[j].
MinSize
;
457
startx += colStrips[i].
MinSize
;
459
totalColumnWidths += colStrips[i].
MinSize
;
514
lastRowHeight = containerInfo.Rows[lastRow].
MinSize
;
520
lastColumnHeight = containerInfo.Columns[containerInfo.Columns.Length -1].
MinSize
;