Hi Team,
We have developed one UWP app that app need to learn courses when we click on learn course window that window open in new popup window
**We are not able to see that new course window in UWP but try to see that new window to click Task manager to open that window in windows OS, It is not possible to see that New popup (Course) window in Kiosk Systems **
I have tried below code to open new course window on same(Main) window but blank window is opened
private void CoreWebView2_NewWindowRequested(Microsoft.Web.WebView2.Core.CoreWebView2 sender, Microsoft.Web.WebView2.Core.CoreWebView2NewWindowRequestedEventArgs args)
{
args.Handled = true;
args.NewWindow = (Microsoft.Web.WebView2.Core.CoreWebView2)sender;
args.GetDeferral().Complete();
}
Requirement:1. Open new popup course window in Same window
2.Focus that popup window on same(Main window)
I have tried alternate ways but doesn't work for me, Please provide your valuable suggestions to resolve this issue
Thanks in Advance
Regards,
Suresh.