c# – Awesomium Popup – ShowCreatedWebView示例

前端之家收集整理的这篇文章主要介绍了c# – Awesomium Popup – ShowCreatedWebView示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在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”:
  1. <a id="foo" href="http://...." target="_blank">Test link</a>

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

  1. webControl1.ShowCreatedWebView += OnShowNewView;
  2.  
  3. internal static void OnShowNewView( object sender,ShowCreatedWebViewEventArgs e )
  4. {
  5. // Your link is in e.TargetURL
  6. // You can handle it like in docs you've mentioned
  7. }

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

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

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

  1. internal static void OnShowNewView(object sender,ShowCreatedWebViewEventArgs e)
  2. {
  3. WebControl webControl = sender as WebControl;
  4.  
  5. if (webControl == null)
  6. return;
  7.  
  8. if (!webControl.IsLive)
  9. return;
  10.  
  11. ChildWindow newWindow = new ChildWindow();
  12.  
  13. if (e.IsPopup && !e.IsUserSpecsOnly)
  14. {
  15. Int32Rect screenRect = e.Specs.InitialPosition.GetInt32Rect();
  16.  
  17. newWindow.NativeView = e.NewViewInstance;
  18. newWindow.ShowInTaskbar = false;
  19. newWindow.WindowStyle = System.Windows.WindowStyle.ToolWindow;
  20. newWindow.ResizeMode = e.Specs.Resizable ? ResizeMode.CanResizeWithGrip : ResizeMode.NoResize;
  21.  
  22. if ((screenRect.Width > 0) && (screenRect.Height > 0))
  23. {
  24. newWindow.Width = screenRect.Width;
  25. newWindow.Height = screenRect.Height;
  26. }
  27. newWindow.Show();
  28. if ((screenRect.Y > 0) && (screenRect.X > 0))
  29. {
  30. newWindow.Top = screenRect.Y;
  31. newWindow.Left = screenRect.X;
  32. }
  33. }
  34. else if (e.IsWindowOpen || e.IsPost)
  35. {
  36. newWindow.NativeView = e.NewViewInstance;
  37. newWindow.Show();
  38. }
  39. else
  40. {
  41. e.Cancel = true;
  42. newWindow.Source = e.TargetURL;
  43. newWindow.Show();
  44. }
  45. }

猜你在找的C#相关文章