How do you display a custom UserControl as a dialog in C#/WPF (.NET 3.5)?
|
1
|
|
|
|
|
|
Place it in a Window and call Window.ShowDialog.
|
||||||||||
|
|
|
I think mvermef ment the part about the Cinch implementation of Application.DoEvents. |
||
|
|
|
|
it can be done I suggest you look at MVVM and Cinch by Sacha Barber. |
||
|
|
|
|
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 This, however, is:
|
||
|
|
