How to reproduce:
public Form1()
{
InitializeComponent();
this.radPageView1.ItemSizeMode = Telerik.WinControls.UI.PageViewItemSizeMode.EqualSize;
this.radPageView1.ItemSize = new Size(50, 20);
}
Workaorund: Set the properties in the Load event of the form or force the layout by calling the LoadElementTree method on the control
public Form1()
{
InitializeComponent();
this.radPageView1.LoadElementTree();
this.radPageView1.ItemSizeMode = Telerik.WinControls.UI.PageViewItemSizeMode.EqualSize;
this.radPageView1.ItemSize = new Size(50, 20);
}
Regards,
Hristo
Progress Telerik