To reproduce:
- Add PageView to a form and set its Dock property to fill.
- Add single page and set its AutoScroll property to true.
- Add some controls and make sure that a scrollbar will appear.
- Start the application and scroll to the bottom.
- Maximize the form. You will notice that the scrollbar position is wrong.
Workaround:
protected override void WndProc(ref Message m)
{
if (m.Msg == 0x0112)
{
if (m.WParam == new IntPtr(0xF030))
{
this.radPageView1.SelectedPage.AutoScrollPosition = this.radPageView1.AutoScrollPosition;
}
}
base.WndProc(ref m);
}
Hello,
This behavior was originally reported more than ten years ago, and we haven’t noticed significant demand or follow-up from the community since then. Also, there is a feasible workaround that can be applied. As a result, we currently plan to prioritize improvements that have a broader impact and are more widely requested.
This ticket is marked as "Declined". If this limitation is still affecting your scenario, please share additional context or use cases.
Regards,
Nadya | Tech Support Engineer
Progress Telerik