Found 136 packages
The WebView2 control enables you to embed web technologies (HTML, CSS, and JavaScript) in your native applications powered by Microsoft Edge (Chromium). This package is necessary for Win32 C/C++, WPF, and WinForms applications. To learn more about package versions checkout https://aka.ms/wv2-packageversion. To learn best practices checkout: https://aka.ms/wv2-bestpractices.
Webview2 runtime for Fixed Version distribution. Example usage: var webView = new WebView2() { Dock = DockStyle.Fill }; await webView.EnsureCoreWebView2Async(await CoreWebView2Environment.CreateAsync(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "WebView2"))); Controls.Add(webView); webView.CoreWebView2.Navigate("https://nuget.org");
Build WPF apps with Blazor and WebView2.
Webview2 runtime for Fixed Version distribution. Example usage: var webView = new WebView2() { Dock = DockStyle.Fill }; await webView.EnsureCoreWebView2Async(await CoreWebView2Environment.CreateAsync(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "WebView2"))); Controls.Add(webView); webView.CoreWebView2.Navigate("https://nuget.org");
Build Windows Forms apps with Blazor and WebView2.
Webview2 runtime for Fixed Version distribution. Example usage: var webView = new WebView2() { Dock = DockStyle.Fill }; await webView.EnsureCoreWebView2Async(await CoreWebView2Environment.CreateAsync(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "WebView2"))); Controls.Add(webView); webView.CoreWebView2.Navigate("https://nuget.org");
Optional extension to WebView2 which implements the Chrome DevTools Protocol API, allowing devs to easily access Chromium API functions, events, and types.
WebView2 - NET - Interop
Package Description
WebView2.DevTools.Dom - Extension WebView2 providing strongly typed DOM access/modification. ✔️ WebView2.DevTools.Dom is a library for strongly typed DOM access when using WebView2. ✔️ It provides a convenient way to write readable/robust/refactorable DOM access code. ✔️ Chrome DevTools Protocol based API ✔️ Talks directly to the WebView2 browser (no remote debugging port required). ✔️ Extensive Unit Tests ✔️ Free for everyone to use // Add using WebView2.DevTools.Dom; to get access to the CreateDevToolsContextAsync extension method var devToolsContext = await coreWebView2.CreateDevToolsContextAsync(); // Get element by Id // https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelector var htmlDivElement = await devToolsContext.QuerySelectorAsync<HtmlDivElement>("#myDivElementId"); //Set innerText property for the element await htmlDivElement.SetInnerTextAsync("Welcome!"); // Manually dispose of context (only DisposeAsync is supported as the whole API is async) // alternativly use await using var devToolsContext = await coreWebView2.CreateDevToolsContextAsync(); // if your .Net version supports it. await devToolsContext.DisposeAsync(); Website: https://github.com/ChromiumDotNet/WebView2.DevTools.Dom
Package Description
A .NET library to aid WebView2 control hosting, .NET/JavaScript interop and Html to Pdf Conversion
C# DOM bindings to be used with WebView2
Package Description
The WebView2 control enables you to embed web technologies (HTML, CSS, and JavaScript) in your native applications powered by Microsoft Edge (Chromium). This package is necessary for Console and Avalonia applications. To learn more about package versions checkout https://aka.ms/wv2-packageversion. To learn best practices checkout: https://aka.ms/wv2-bestpractices.
Package Description
Webview2 locales files.
Interop for Microsoft WebView2 control
Airspace fix for WebView2. Creates a Window with WebView2, manipulates the window to sit behind your main window, so that you can put other controls over the WebView2.
A Chromium-based browser that can be used into your .NET application to load modern web pages built with HTML5, CSS3, JavaScript etc. You can obtain a free 30-day trial by filling a form at https://www.teamdev.com/dotnetbrowser#evaluate