Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In this User Control XAML if I have initially

<UserControl x:Class="someclass"

Can I Can I programmatically change the class ? Where and How ?

share|improve this question

3 Answers

up vote 1 down vote accepted

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:

<UserControl x:Class="someclass" x:Name="myControl" ...

In code do:

this.myControl = new SomeOtherUserControl();

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:

interface ISpecialControlBehaviour
{
...
}

class DefaultBehaviour: ISpecialControlBehaviour
{
}

class Behaviour2 : ISpecialControlBehaviour
{
}

Your user control:

class MyUserControl
{
   // use this property to change behaviour at runtime.
   ISpecialControlBehaviour Behaviour {get;set;}
   MyUserControl()
   {
      Behaviour  = DefaultBehaviour();
   }
}

If not clear let me know and I will extend the code sample ;-)

share|improve this answer
Thank you very much, will re-read multiple times to understand before trying :) – user310291 Jan 23 '11 at 12:19

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.

share|improve this answer

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:

ContentControl.Content = new MyUserControl();
share|improve this answer
Very interesting idea I'll try thanks (if it works you'll get the right answer :)) – user310291 Jan 23 '11 at 13:45
It should work, and it's simple. just give the ContentControl a name, and in code change the content. let me know if there are problems – Notter Jan 23 '11 at 13:57
It works for some UserControl and not for some, maybe it's due to some codebehind I put will have to investigate further tomorrow. Hope I can make it work all the time that would be the best solution :) – user310291 Jan 24 '11 at 21:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.