Posted 11 Feb 2010 Link to this post
<Expander IsExpanded="{Binding Path=IsExpanded}"></Expander> <Telerik:RadExpander IsExpanded="{Binding Path=IsExpanded}" ></Telerik:RadExpander> Bound to private bool _isExpanded = true; public bool IsExpanded { get { return _isExpanded; } set { _isExpanded = value; //Some code } } Is this the wrong way to do it? - Martin
Bound to
Posted 18 Oct 2013 Link to this post
Telerik.Windows.Controls.ViewModelBase and call this.OnPropertyChanged(() => this.IsExpanded);