Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/outsystems/webview
Avalonia/WPF control that wraps CefGlue webview control
https://github.com/outsystems/webview
avalonia browser cef cefglue csharp dotnet macos odc snyk-service-studio webview windows wpf xaml
Last synced: about 1 month ago
JSON representation
Avalonia/WPF control that wraps CefGlue webview control
- Host: GitHub
- URL: https://github.com/outsystems/webview
- Owner: OutSystems
- License: apache-2.0
- Created: 2017-02-23T13:21:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-05-16T09:15:52.000Z (6 months ago)
- Last Synced: 2024-05-22T18:07:40.651Z (6 months ago)
- Topics: avalonia, browser, cef, cefglue, csharp, dotnet, macos, odc, snyk-service-studio, webview, windows, wpf, xaml
- Language: C#
- Homepage:
- Size: 10.6 MB
- Stars: 291
- Watchers: 34
- Forks: 38
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WebView
[![WebViewControl-Avalonia](https://img.shields.io/nuget/v/WebViewControl-Avalonia.svg?style=flat&label=WebView-Avalonia)](https://www.nuget.org/packages/WebViewControl-Avalonia/)
[![WebViewControl-WPF](https://img.shields.io/nuget/v/WebViewControl-WPF.svg?style=flat&label=WebView-WPF)](https://www.nuget.org/packages/WebViewControl-WPF/)Avalonia/WPF control that wraps CefGlue webview control
![Screenshot](./SampleWebView.Avalonia/screenshot.png)
WebView lets you embed Chromium in .NET apps. It is a .NET wrapper control around [CefGlue](https://github.com/OutSystems/CefGlue) and provides a better and simple API. Likewise CefGlue it can be used from C# or any other CLR language and provides both Avalonia and WPF web browser control implementations.
Here's a table for supported architectures, frameworks and operating systems:
| OS | x64 | ARM64 | WPF | Avalonia |
|---------|-----|-------|-----|----------|
| Windows | ✔️ | ✔️ | ✔️ | ✔️ |
| macOS | ✔️ | ✔️ | ❌ | ✔️ |
| Linux | ✔️ | 🔘 | ❌ | ✔️ |✔️ Supported | ❌ Not supported | 🔘 Works with issues.
See [LINUX.md](https://github.com/OutSystems/CefGlue/blob/main/LINUX.md) for more information about issues and tested distribution list.
Currently only x64 and ARM64 architectures are supported.It also provides the following additional features:
- Strongly-typed javascript evaluation: results of javascript evaluation returns the appropriate type
- Scripts are aggregated and executed in bulk for improved performance
- Ability to evaluate javascript synchronously
- Javascript error handling with call stack information
- Events to intercept and respond to resources loading
- Events to track file download progress
- Ability to load embedded resources using custom protocols
- Ability to disable history navigation
- Error handling
- Proxy configuration support
- Option to run in [offscreen rendering mode](https://bitbucket.org/chromiumembedded/cef/wiki/GeneralUsage#markdown-header-off-screen-rendering) (not recommended as it has several issues)## Releases
Stable binaries are released on NuGet, and contain everything you need to embed Chromium in your .NET/CLR application.## Documentation
See the [Sample](SampleWebView.Avalonia) project for example web browsers built with WebView. It demos some of the available features.## Other
- [Avalonia FuncUI Support](https://github.com/WhiteBlackGoose/MoreFuncUI#morefuncuiwebview).## Versioning
The versioning system works as follows:`..`
Whenever you fix a bug, please increase the patch version. \
Whenever you bring a new feature, please increase the major version. \
Use the minor version for the current cef version.## TODO
- Improve documentation