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

I'm surprised I can't find this through googling, but I have a Viewbox in a WPF window and I'd like to add a UserControl to it through code. The viewbox is empty, it's simply there to have a "wait spinner" pop up during certain events (I got tired of looking at it on the design view and would just like to stick it in there via code).

I expected there to be something like Viewbox.Content, but no such luck

share|improve this question
ViewBox is not ContentControl, instead in inherits from Decorator which has a single Child property as stated in the answer below. – F Ruffell Apr 2 '12 at 3:31

1 Answer

up vote 3 down vote accepted
ViewBox.Child = new BlahMaster2000();
share|improve this answer
I can't believe I'm not getting any +1's for my BlahMaster2000. – Ritch Melton Apr 2 '12 at 3:38
The +1 you got from me was exclusively for your BlahMaster2000. In fact, I changed the name of my UserControl to BlahMaster2000 – cost Apr 2 '12 at 3:48
@cost - Excellent. – Ritch Melton Apr 2 '12 at 3:49
Actually, perhaps you can help me with something else. I think I'd like to add the grid programatically to the window itself (so I don't have a random grid floating in the middle of my designview), but the only way that pops out to me is to use this.AddChild(grid) and that throws an exception. – cost Apr 2 '12 at 3:58

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.