vote up 3 vote down star
1

How do you display a custom UserControl as a dialog in C#/WPF (.NET 3.5)?

flag

4 Answers

vote up 12 vote down check

Place it in a Window and call Window.ShowDialog.

private void Button1_Click(object sender, EventArgs e)
{
    Window window = new Window 
    {
        Title = "My User Control Dialog",
        Content = new MyUserControl()
    };

    window.ShowDialog(this);
}
link|flag
+1 I didn't even think to do that dynamically, nice example! (better than mine :) – Pwninstein Aug 11 at 18:31
Good example. This is what I was looking for. – Taylor L Aug 11 at 18:33
The example could be shortened further, but that is left as an exercise for the reader ;-D – sixlettervariables Aug 11 at 18:44
1  
I also found that setting the SizeToContent = SizeToContent.WidthAndheight and ResizeMode = ResizeMode.NoResize were helpful so it lets the user control define the size. – Taylor L Aug 11 at 18:49
vote up 0 vote down

I think mvermef ment the part about the Cinch implementation of Application.DoEvents.

link|flag
vote up -1 vote down

it can be done I suggest you look at MVVM and Cinch by Sacha Barber.

link|flag
vote up 0 vote down

As far as I know you can't do that. If you want to show it in a dialog, that's perfectly fine, just create a new Window that only contains your UserControl, and call ShowDialog() after you create an instance of that Window.

EDIT: The UserControl class doesn't contain a method ShowDialog, so what you're trying to do is in fact not possible.

This, however, is:

private void Button_Click(object sender, RoutedEventArgs e){
    new ContainerWindow().ShowDialog();
}
link|flag

Your Answer

Get an OpenID
or

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