Telerik RadRibbonBar - strange behavior

0

When you set up text and images in a RibbonBar , along with their alignments, suddenly the window becomes too small, preventing any form of increase in size (Windows form, Telerik v2014.1.228.40 , Visual Studio 2013, C #). This in a project started several weeks ago and that worked well in previous versions of both VS and Telerik.

Solution in my comment below.

    
asked by anonymous 17.03.2014 / 15:38

1 answer

1

As I found the solution, here goes: this is a known problem in this first version of the Telerik library and only occurs if WindowsState = Maximized in programming time. Correction: Set this at runtime. In the event load worked fine

this.WindowState = FormWindowState.Maximized;

    
18.03.2014 / 19:33