Completed
Last Updated: 27 Feb 2017 08:29 by ADMIN
ADMIN
Telerik Admin
Created on: 09 Apr 2012 12:15
Category: OutlookBar
Type: Bug Report
3
OutlookBar: When minimized during run-time change of themes item's header overlaps the minimizing toggle button
When the OutlookBar is minimized during run-time change of themes the text set to item's header overlaps the minimizing toggle button.

You can work this around by creating a custom control that derives from RadOutlookBar and override its OnApplyTemplate() method. Inside the method call the protected VisualStateChanged() method.

public class CustomOutlookBar : RadOutlookBar
{
	public override void OnApplyTemplate()
	{
		base.OnApplyTemplate();
		this.ChangeVisualState(false);
	}
}

Available in the R1 2017 SP1 Release.
0 comments