11 references to dimensions
System.Windows.Forms (11)
winforms\Managed\System\WinForms\MonthCalendar.cs (11)
421
return
dimensions
;
424
if (!this.
dimensions
.Equals(value))
1490
this.
dimensions
.Height = (nRows < 1) ? 1 : nRows;
1496
this.
dimensions
.Width = (nCols < 1) ? 1 : nCols;
1499
minSize.Width = (minSize.Width + INSERT_WIDTH_SIZE) *
dimensions
.Width - INSERT_WIDTH_SIZE;
1500
minSize.Height = (calendarHeight + INSERT_HEIGHT_SIZE) *
dimensions
.Height - INSERT_HEIGHT_SIZE + todayHeight;
2058
if (
dimensions
.Width != x ||
dimensions
.Height != y) {
2059
this.
dimensions
.Width = x;
2060
this.
dimensions
.Height = y;
2180
return !
dimensions
.Equals(new Size(1, 1));