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