加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c# – Awesomium Popup – ShowCreatedWebView示例

发布时间:2020-12-15 08:45:38 所属栏目:百科 来源:网络整理
导读:我在Visual Studio 2012中使用带有C# Windows窗体的Awesomium 1.7.4.2.我无法通过单击超链接打开弹出窗口. 我有一个WebControl形式和ShowCreatedWebView捕获事件,但在里面我不知道如何打开一个新窗口弹出子传递数据到POST. 我知道我必须使用ShowCreatedWebVi
我在Visual Studio 2012中使用带有C# Windows窗体的Awesomium 1.7.4.2.我无法通过单击超链接打开弹出窗口.

我有一个WebControl形式和ShowCreatedWebView捕获事件,但在里面我不知道如何打开一个新窗口弹出子传递数据到POST.

我知道我必须使用ShowCreatedWebView并尝试使用SDK示例失败:

http://docs.awesomium.net/?tc=E_Awesomium_Core_IWebView_ShowCreatedWebView

它只是不起作用!

任何人都可以在C#窗体中给出一个例子吗?

谁能帮我?

解决方法

请记住在您的超链接中添加target =“_ blank”:
<a id="foo" href="http://...." target="_blank">Test link</a>

然后你需要的只是捕获ShowCreatedWebView事件,如下所示:

webControl1.ShowCreatedWebView += OnShowNewView;

internal static void OnShowNewView( object sender,ShowCreatedWebViewEventArgs e )
{
    // Your link is in e.TargetURL
    // You can handle it like in docs you've mentioned 
}

您可以使用外部浏览器打开它,如下所示:

System.Diagnostics.Process.Start(e.TargetURL.ToString());

你可以像在Awesomium docs中那样处理它:

internal static void OnShowNewView(object sender,ShowCreatedWebViewEventArgs e)
    {
        WebControl webControl = sender as WebControl;

        if (webControl == null)
            return;

        if (!webControl.IsLive)
            return;

        ChildWindow newWindow = new ChildWindow();

        if (e.IsPopup && !e.IsUserSpecsOnly)
        {
            Int32Rect screenRect = e.Specs.InitialPosition.GetInt32Rect();

            newWindow.NativeView = e.NewViewInstance;
            newWindow.ShowInTaskbar = false;
            newWindow.WindowStyle = System.Windows.WindowStyle.ToolWindow;
            newWindow.ResizeMode = e.Specs.Resizable ? ResizeMode.CanResizeWithGrip : ResizeMode.NoResize;

            if ((screenRect.Width > 0) && (screenRect.Height > 0))
            {
                newWindow.Width = screenRect.Width;
                newWindow.Height = screenRect.Height;
            }
            newWindow.Show();
            if ((screenRect.Y > 0) && (screenRect.X > 0))
            {
                newWindow.Top = screenRect.Y;
                newWindow.Left = screenRect.X;
            }
        }
        else if (e.IsWindowOpen || e.IsPost)
        {
            newWindow.NativeView = e.NewViewInstance;
            newWindow.Show();
        }
        else
        {
            e.Cancel = true;
            newWindow.Source = e.TargetURL;
            newWindow.Show();
        }
    }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读