17 references to Control
System.Windows.Forms (17)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelCell.cs (12)
117
if (
Control
is not null && ToolStripPanelRow is not null &&
Control
.ParentInternal == ToolStripPanelRow.ToolStripPanel)
126
Control
.Visible = value;
162
if (MaximumSize.Height >=
Control
.PreferredSize.Height)
171
if (MaximumSize.Height + growBy >=
Control
.PreferredSize.Height)
173
int freed =
Control
.PreferredSize.Height - MaximumSize.Height;
181
if (MaximumSize.Height + growBy <
Control
.PreferredSize.Height)
195
if (MaximumSize.Width >=
Control
.PreferredSize.Width)
204
if (MaximumSize.Width + growBy >=
Control
.PreferredSize.Width)
206
int freed =
Control
.PreferredSize.Width - MaximumSize.Width;
214
if (MaximumSize.Width + growBy <
Control
.PreferredSize.Width)
397
if (!
Control
.Visible)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.cs (2)
460
Size minSize = GetMinimumSize((ToolStrip)currentCell.
Control
);
557
Size minSize = GetMinimumSize((ToolStrip)currentCell.
Control
);
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.ToolStripPanelRowControlCollection.cs (2)
152
return cell.
Control
;
163
if (cell.
Control
== c)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.ToolStripPanelRowControlCollection.ToolStripPanelCellToControlEnumerator.cs (1)
30
return cell?.
Control
;