In this User Control XAML if I have initially
<UserControl x:Class="someclass"
Can I Can I programmatically change the class ? Where and How ?
|
In this User Control XAML if I have initially
Can I Can I programmatically change the class ? Where and How ? |
|||
|
|
|
You cannot change the class type when instantiated but you can instantiate a new object. Alternative 1: [This is not something I have tried myself, but I think you should be able to pull it off if you give the control a name. Then programatically you could do this:
In code do:
Alternative 2: Create an interface that provides the behaviour you wish to change at runtime in your control. And have your User Control contain an instance that implements this behaviour. You can then change the instance at runtime. Something like:
Your user control:
If not clear let me know and I will extend the code sample ;-) |
|||
|
|
No, as this is a compile time directive. msdn You should use a backing class that you can exchange by any mean, and either use properties or an ObjectDataProvider to access bound methods. |
|||
|
|
|
I may be off in my answer, but another option to switch Controls is to to put them inside a Content Control. and than in the code you can say:
|
|||||||
|