You can not directly adjust the size of the monthCalendar, set the Font size of the calendar instead, it would auto-size the monthCalendar to fit the font size, by default the font size of monthCalendar is 8.25, set it to whatever you want. for example:
f = new Font(this.monthCalendar1.Font.FontFamily, (float)10.2);
this.monthCalendar1.Font = f;