Unplanned
Last Updated: 10 Jul 2025 08:06 by Martin Ivanov

The RadExpander element gets underlined in the Visual Studio designer and you can see a NullReferenceException when mouse over the element. The issue occurs only when data bind the IsExpanded property of RadExpander.

There are no issues at runtime. Also, in the common scenario the designer doesn't break. In case the error breaks the designer, you can set the IsExpanded bindining in the code-behind, instead of XAML.

public MainWindow()
{
    InitializeComponent();
    this.radExpander.SetBinding(RadExpander.IsExpandedProperty, new Binding("IsExpanded"));
}

Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Expander
Type: Bug Report
6
When IsTabStop is set to False the ToggleButton in the RadExpander still gets the focus.
Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
Raise the Expanded event after the Expand animation has completed. Raise the PreviewExpanded event before staring the Expand animation.
Raise the Collapsed event after the Collapse animation has completed. Raise the PreviewCollapsed event before staring the Collapse animation.
Unplanned
Last Updated: 05 Jan 2017 07:58 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Expander
Type: Bug Report
4
AnimationManager is not thread-safe.