I've just switched to telerik and are replacing my elements.
My problem is that the normal expander works and the telerik doesnt.. I've placed them next to each other in the code, to validate this.
<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