|
How would I show a dialog from the VM's OnViewReady?
In a VM method bound to a button, I can do the following:
public IEnumerable ShowMyPopup()
{
var showMyDialog = new ShowDialog();
yield return showMyDialog;
var myResult = showMyDialog.Dialog.Result;
}
How would I do the same thing from OnViewReady?
|