Method wpfBuilder.ShowDialog
Overload
Shows the window and waits until closed.
public bool ShowDialog(DependencyObject owner = null)
Parameters
owner (DependencyObject)
Owner window or element. Sets System.Windows.Window.Owner. |
Returns
Exceptions
InvalidOperationException
|
Remarks
Calls wpfBuilder.End, sets System.Windows.Window.Owner and calls System.Windows.Window.ShowDialog. You can instead call these functions directly. Or call System.Windows.Window.Show to show as non-modal window, ie don't wait. Or add wpfBuilder.Panel to some container window or other element, etc.