When you set a certain page visibility to hidden or collpased (radPageViewPage2.Item.Visibility = Telerik.WinControls.ElementVisibility.Hidden;) and then navigate with Left and Right arrow keys, you are able to navigate to a hidden page.
In order to reprocude: - Add RadPageView - Add RadPageVIewPage (or two) - Add couple controls to the bottom right corner or the page (aligned with the and of the page) - Set those controls Anchoring property to Bottom, Right Start and the controls are in a different position then the they were located.
This feature request refers to RadPageView in Strip ViewMode, which supports a multi-line StripElement. Thus StripItems will appear in different lines.
After disabling the whole form with the controls in it, and the enable it again, the other controls are enabled but the StripItems (radPageViewPage) does not enable.
A nice addition to RadPageView will the ability to scroll by pixel or by page.
User should be able to define the position of the strip buttons. For example, the ItemList buttons should be situated on the left side of RadPageView while the scroll buttons should be on the right side.
Under specific circumstances and in Windows 2008 Server environment the RadTabStrip internally used in RadDock does not get a proper size. Workaround: bool performLayout = false; protected override void OnSizeChanged(EventArgs e) { base.OnSizeChanged(e); if (this.WindowState == FormWindowState.Minimized) { this.performLayout = true; } else if (this.performLayout) { //reset padding to force bounds update this.Padding = new Padding(1); this.Padding = Padding.Empty; this.performLayout = false; } } Basically, you need to override the OnSizeChanged method of the main form and first set and then reset its Padding when the it goes from Minimized to another state. This will trigger that internal layout mechanisms of our controls and you will get the RadGridView shown as expected.
There should be a property at RadPanelBar which gets/sets the selected group.
Add scroll to a PanelBarGroupElement functionality
It would be nice if RadTabStrip/RadDock can support multiple rows of tabs.