9 writes to MinSize
System.Windows.Forms (9)
System\Windows\Forms\Layout\TableLayout.cs (8)
228
cols[^1].
MinSize
+= totalSpace.Width - usedSpace.Width;
233
rows[^1].
MinSize
+= totalSpace.Height - usedSpace.Height;
661
strip.
MinSize
= (int)Math.Round((double)styles[i].Size);
666
strip.
MinSize
= 0;
788
strips[i].
MinSize
-= (int)(percentageOfTotal * stealAmount);
1052
strip.
MinSize
+= cellBorderWidth; // add the padding for the cell border
1106
strip.
MinSize
= stripSize + cellBorderWidth;
1162
strip.
MinSize
+= delta;
System\Windows\Forms\Layout\TableLayout.MinSizeProxy.cs (1)
13
set { strip.
MinSize
= value; }
29 references to MinSize
System.Windows.Forms (29)
System\Windows\Forms\Layout\TableLayout.cs (17)
662
strip.MaxSize = strip.
MinSize
;
769
totalPercentAllocatedSpace += strip.
MinSize
;
875
size += strip.
MinSize
;
1032
totalAbsoluteAndAutoSizeAllocatedSpace += strip.
MinSize
;
1034
Debug.Assert((strip.
MinSize
== style.Size), "absolutely sized strip's size should be set before we call ApplyStyles");
1038
totalPercentAllocatedSpace += strip.
MinSize
;
1041
totalAbsoluteAndAutoSizeAllocatedSpace += strip.
MinSize
;
1055
usedSpace += strip.
MinSize
;
1104
usedSpace -= strip.
MinSize
; // back out the size we thought we were allocating before.
1133
int totalWidth = (int)Math.Round(((strip.
MinSize
* totalPercent) / style.Size));
1135
usedSpace -= strip.
MinSize
;
1157
int delta = Math.Min(strip.MaxSize - strip.
MinSize
, remainingSpace);
1207
top += containerInfo.Rows[currentRow].
MinSize
;
1220
startX -= containerInfo.Columns[currentCol].
MinSize
;
1224
startX += containerInfo.Columns[currentCol].
MinSize
;
1234
width += containerInfo.Columns[currentCol].
MinSize
;
1248
height += containerInfo.Rows[rowIndex].
MinSize
;
System\Windows\Forms\Layout\TableLayout.MinSizeProxy.cs (1)
12
get { return strip.
MinSize
; }
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (11)
274
cw[i] = containerInfo.Columns[i].
MinSize
;
296
rh[i] = containerInfo.Rows[i].
MinSize
;
375
startx -= colStrips[i].
MinSize
;
383
colStrips[i].
MinSize
,
384
rowStrips[j].
MinSize
);
411
starty += rowStrips[j].
MinSize
;
416
totalColumnHeights += rowStrips[j].
MinSize
;
422
startx += colStrips[i].
MinSize
;
425
totalColumnWidths += colStrips[i].
MinSize
;
511
lastRowHeight = containerInfo.Rows[lastRow].
MinSize
;
518
lastColumnHeight = containerInfo.Columns[^1].
MinSize
;