using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Microsoft.Web.WebView2.Core;
using Microsoft.Web.WebView2.WinForms;
namespace chome
{
public partial class FMTEST : Form
{
public FMTEST()
{
InitializeComponent();
}
private async void FMTEST_LoadAsync(object sender, EventArgs e)
{
webView21.Source = n
await webView21.EnsureCoreWebView2Async();
webView21.CoreWebView2.NewWindowRequested += CoreWebView2_NewWindowRequested;
}
private void CoreWebView2_NewWindowRequested(object sender,CoreWebView2NewWindowRequestedEventArgs e)
{
//e.NewWindow = webView22.CoreWebView2;
//在第二个webview2上面打开这个新窗口
webView22.Source = new Uri(e.Uri.ToString());
e.Handled = true;//禁止弹窗
}
}
}
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
关于outlook访问Microsoft 365 证书弹窗问题处理
关于 outlook客户端访问Microsoft 365时证书弹窗问题处理
EX700980 Microsoft 365 Outlook证书弹窗 -
webview2抓取返回数据
webview2设置过滤器 //进行
Text webview System -
Js打开新窗口拦截问题整理
一.js打开新窗口,经常被拦截 二、 1.如果是用户点击操作,打开新窗口不被拦截 2.如果在ajax回调函数中调用打开新窗口会被拦截 三、Ajax毁掉函数中,打开新窗口解决方案
JS打开新窗口 Ajax回调函数打开新窗口 新窗口 ajax html