How to open different pages in same one window by vb.net CefSharp? #4555
Closed
chelseynelson2008
started this conversation in
General
Replies: 1 comment
-
Already asked at https://stackoverflow.com/questions/76759701/how-to-open-different-pages-in-the-same-window-by-vb-net-cefsharp |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I create control ChromiumWebBrowser1 in form1.and i open link www.baidu.com page in ChromiumWebBrowser1. now i find many more links in page page.I click these links again, unfortunately These web links all open in a new pop-up window. I don't want that. I think these links still open in the first window enter image description here Imports CefSharp Imports CefSharp.Handler Imports CefSharp.WinForms.
Imports CefSharp Imports CefSharp.Handler Imports CefSharp.WinForms
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
End Sub
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
End Sub
Private Sub Form1_FormClosing(sender As Object, e As FormClosingEventArgs) Handles MyBase.FormClosing
End Sub
Private Sub bt_Click(sender As Object, e As EventArgs) Handles bt.Click
TextBox1.Text = ChromiumWebBrowser1.Address
End Sub
Beta Was this translation helpful? Give feedback.
All reactions