All Questions
218 questions
0
votes
0
answers
149
views
Get URL from browser (GoogleChrome, Opera, Firefox, Edge, Brave) in WPF Desktop App
I have created a WPF desktop application. This detects active window, if active window is browser, app gets URL of current process.(the function is written below). This method 50% working and 50% not.
...
0
votes
1
answer
1k
views
Extensions on WebView2 on WinForms
I would like to use AdBlock extension in WebView2. How can i add extensions to WebView2?
I have searched and found out that WebView currently doesnt support extensions. If there is some play around ...
0
votes
0
answers
404
views
Embedding CefSharp Browser v107.1.120 in C# WinForms application
I used CefSharp embedded browser in desktop app WinForms before (v106.0.260) and all worked well.
With the latest 107.1.120 I do have a problem - it throws exception at the line:
if (Cef.Initialize(...
0
votes
1
answer
621
views
Embedding PuppeteerSharp browser in WinForms and intercepting WebSocket responses
I have WinForms app under development and I have to embed a browser in one of the windows and intercept the responses with the WebSocket. Questions:
PuppeterSharp is .NET Standard 2.0 library, but my ...
0
votes
0
answers
125
views
CEFsharp : code that tells the site page that the browser window is open on the entire page?
First of all, sorry for any mistakes, because English is my second language.
I am currently working on a browser project using (CEFsharp winform C#) to open the page and save it offline, but I ...
0
votes
0
answers
154
views
C# Winforms cannot start form2 from form1
I'm making a WinForms application using EasyTabs from NuGet. I went over to EasyTabs' GitHub page, and used their code as a template for my project.
In my program.cs, I start TestApp.TestApp() with ...
0
votes
1
answer
2k
views
How to block/restrict specific URL in CefSharp WinForms C#
Hope you all are doing good.
I have created the Webbrowser using CefSharp in WindowsForm of C#. Now I want to restrict/Block a specific URL to render in the browser due to some privacy other than that ...
0
votes
1
answer
15k
views
How to properly initialize CefSharp web browser
I am using the CefSharp web browser in my project. But when I switch between two WinForms I got this exception.
System.Exception: 'CEF can only be initialized once per process. This is a limitation ...
3
votes
1
answer
3k
views
CEFSharp Open New window
Alright all,
I have stumped myself, spent the last few days searching and trying to find a solution with no luck.
Running latest version of CefSharp, coding c# and vuejs. I am able to easily get ...
1
vote
0
answers
129
views
IWebBrowser2 get from the native ActiveX control did not succeed
if (HiddenForm.configResponse != null)
userId = HiddenForm.configResponse.id;
ServiceActivityInterface remoteMethods = (ServiceActivityInterface)Activator.GetObject(typeof(...
0
votes
1
answer
65
views
How do I clone everything inside a tabpage in code while creating a new tabpage
In winforms I am creating a browser based off of Gecko and I need the geckoBrowser1, urlBar1 (not yet added) and back/forwardArrow1 (not yet added) to be added to a new tabPage upon it's creation. My ...
1
vote
1
answer
245
views
Is there a way to dynamically resize gecko browser in winforms c# with certain specifications?
I'm making a browser based on the Mozilla Gecko engine in visual c#, but I want to leave space at the top for the url bar and tabs. How can I dynamically change the size with the window while keeping ...
0
votes
0
answers
237
views
C# - How to add WebP support to GeckoFX embedded browser in Windows Form?
I'm building a browser in a C# .NET Windows Form Application and want to add support for WebP (.webp) images. How would I go about doing this?
The project uses Geckofx60.64 to create an embedded ...
0
votes
0
answers
640
views
URL Not loading in a System.Windows.Forms.WebBrowser
I'm using a System.Windows.Forms.WebBrowser control to load a webpage. My understanding is it is just a wrapper around Internet Explorer. I'm therefore struggling to understand why the web page loads ...
1
vote
0
answers
692
views
CefSharp.BrowserSubprocess not close randomly
all
Operating environment: win7 x64 , cef x64
I had a browser use CefSharp.winforms 65. In browser i use the code to close
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
...