Completed
Last Updated: 28 Nov 2014 10:50 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 03 Nov 2014 07:44
Category: Dock
Type: Bug Report
1
FIX. RadDock - Incorrect tabs text orientation when the DocumentTabsAlignment property is set to Left and the DocumentTabsTextOrientation property is set to Vertical
To reproduce:

Me.RadDock1.DocumentTabsAlignment = Telerik.WinControls.UI.TabStripAlignment.Left
Me.RadDock1.DocumentTabsTextOrientation = Telerik.WinControls.UI.TabStripTextOrientation.Vertical

Please refer to the attached file.

Workaround:

Me.RadDock1.DocumentTabsAlignment = Telerik.WinControls.UI.TabStripAlignment.Left
Me.RadDock1.DocumentTabsTextOrientation = Telerik.WinControls.UI.TabStripTextOrientation.Vertical

For Each d As DocumentWindow In Me.RadDock1.DockWindows.DocumentWindows
    d.TabStripItem.AngleTransform = 180
Next
 
Or:
foreach (DocumentWindow d in this.radDock1.DockWindows.DocumentWindows)
{
    d.TabStripItem.FlipText = true ;
}
0 comments