Unplanned
Last Updated: 28 Oct 2019 09:40 by ADMIN
Paolo
Created on: 28 Oct 2019 09:39
Category: PageView
Type: Bug Report
1
RadPageView: Pages are not shown when RadPageView is within RadDock and DockPosition.Fill

When you have RadPageView within a RadDock only the selected page is visible and its content is shown. When you select another page it is blank.

Workaround:

For Each page As RadPageViewPage In Me.rpvMain.Pages
    If Not page.Visible Then
        page.Visible = True
        page.Visible = False
    End If
Next
0 comments