I have a user control that has a Grid
as a main container. This control needs to display a modal dialog. However, when I show the dialog (implements ChildWindow
) from the control, nothing happens, no errors and no dialog.
MyDialog dialog = new MyDialog();
dialog.Show();
If ChildWindow
is something that can only be displayed from the main page and not user control, what's my alternative?