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; 788strips[i].MinSize -= (int)(percentageOfTotal * stealAmount); 1052strip.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; 769totalPercentAllocatedSpace += strip.MinSize; 875size += strip.MinSize; 1032totalAbsoluteAndAutoSizeAllocatedSpace += strip.MinSize; 1034Debug.Assert((strip.MinSize == style.Size), "absolutely sized strip's size should be set before we call ApplyStyles"); 1038totalPercentAllocatedSpace += strip.MinSize; 1041totalAbsoluteAndAutoSizeAllocatedSpace += strip.MinSize; 1055usedSpace += 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); 1207top += containerInfo.Rows[currentRow].MinSize; 1220startX -= containerInfo.Columns[currentCol].MinSize; 1224startX += containerInfo.Columns[currentCol].MinSize; 1234width += containerInfo.Columns[currentCol].MinSize; 1248height += 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;