File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 11# WebView
22[ ![ WebViewControl-Avalonia] ( https://img.shields.io/nuget/v/WebViewControl-Avalonia.svg?style=flat&label=WebView-Avalonia )] ( https://www.nuget.org/packages/WebViewControl-Avalonia/ )
3+ [ ![ WebViewControl-Avalonia-Arm64] ( https://img.shields.io/nuget/v/WebViewControl-Avalonia-Arm64.svg?style=flat&label=WebViewControl-Avalonia-Arm64 )] ( https://www.nuget.org/packages/WebViewControl-Avalonia-Arm64/ )
34[ ![ WebViewControl-WPF] ( https://img.shields.io/nuget/v/WebViewControl-WPF.svg?style=flat&label=WebView-WPF )] ( https://www.nuget.org/packages/WebViewControl-WPF/ )
45
56Avalonia/WPF control that wraps CefGlue webview control
@@ -38,6 +39,16 @@ It also provides the following additional features:
3839Stable binaries are released on NuGet, and contain everything you need to embed Chromium in your .NET/CLR application.
3940
4041## Documentation
42+ To start, add these to ` ProjectName.csproj `
43+ ``` xml
44+ <ItemGroup Condition =" '$(Platform)' == 'x64'" >
45+ <PackageReference Include =" WebViewControl-Avalonia" Version =" 3.120.5" />
46+ </ItemGroup >
47+ <!-- https://github.com/dotnet/sdk/issues/21980 -->
48+ <ItemGroup Condition =" $([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture) == 'Arm64'" >
49+ <PackageReference Include =" WebViewControl-Avalonia-ARM64" Version =" 3.120.5" />
50+ </ItemGroup >
51+ ```
4152See the [ Sample] ( SampleWebView.Avalonia ) project for example web browsers built with WebView. It demos some of the available features.
4253
4354## Other
You can’t perform that action at this time.
0 commit comments