Completed
Last Updated: 29 Jul 2011 10:25 by ADMIN
ADMIN
Stefan
Created on: 29 Jul 2011 10:25
Category: Dock
Type: Bug Report
0
ADD. RadDock - functionality to change the text orientation of the AutoHideTab
ADD. RadDock - functionality to change the text orientation of the AutoHideTab
Comment: The text of AutoHideTab can be flipped for achieving of these requirements as the following code snippet demonstrates:
private void radDock1_TransactionCommitted(object sender, RadDockTransactionEventArgs e)
{
if (e.Transaction is AutoHideTransaction)
{
foreach (DockWindow window in e.Transaction.AssociatedWindows)
{
window.AutoHideTab.FlipText = true;
window.AutoHideTab.TextAlignment = ContentAlignment.MiddleCenter;
}
}
}
0 comments