In winforms I usually do Parent.Controls.Remove(this); to have a UserControl remove itself. This isn't working for wpf. My control has button on it to remove the whole UserControl, any ideas how to accomplish this in wpf? Thanks in advance

link|improve this question

do you want to remove userocntrol, in which is button? what type is the parent container? – ArsenMkrt Nov 23 '10 at 8:55
could you provide you XAML markup, to make it clear? – Pavel Morshenyuk Nov 23 '10 at 8:55
@ArsenMkrt - A stackpanel is the parent, but I would prefer to keep the control generic and not limited to parent type. – Josh Nov 23 '10 at 9:08
feedback

1 Answer

up vote 2 down vote accepted

You will need to know the type of the Parent property to remove yourself from your Parent control.

All Panel type parents (Grid, WrapPanel, StackPanel) have the Children property:

i.e. for Grid:

((Grid)button.Parent).Children.Remove(this);

ContentControls (Button, ContentControl, Border) have Content:

i.e. for Button:

((Button)control.Parent).Content = null;
link|improve this answer
Aaah! I see, thanks! I think casting to a Panel base type is more of a generic fit though :) – Josh Nov 23 '10 at 9:04
True true ;)... – Arcturus Nov 23 '10 at 9:06
feedback

Your Answer

 
or
required, but never shown

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