Unplanned
Last Updated: 17 Apr 2024 14:45 by ADMIN
ADMIN
Hristo
Created on: 11 Dec 2015 13:45
Category: RibbonBar
Type: Bug Report
0
FIX. RadRibbonForm - setting a size of the form before the form is shown is not reflected correctly if using the ControlDefault theme
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);
}
0 comments