I am trying to show the window as ShowDialog (same as WPF) in the WinUI3, but found that the currenly present method window.Activate() does not behave the same as ShowDialog().
1.) Is there any way to acheieve this in WinUI3, to show window as ShowDialog() (as in WPF).
2.) I tried to use the ContentDialog, but the limitation is that, I can only one dialog at a time. Suppose , A content dialog contains various input fields or other controls, Now If I want to pop up a messagedialog on top of that, I cannot acheive this, because a ContentDialog is already open.
Is there any way to show a MessageDialog in buttonclick event of ContentDialog.