How to reproduce: set a size in the designer, when the form loads its size will not be the same as the one set
Workaround: set the size in the Load event of the ribbon form
private void Form_Shown(object sender, EventArgs e)
{
this.Size = new Size(600, 600);
}