Sky.Avalonia.WebView.Desktop
1.0.0
dotnet add package Sky.Avalonia.WebView.Desktop --version 1.0.0
NuGet\Install-Package Sky.Avalonia.WebView.Desktop -Version 1.0.0
<PackageReference Include="Sky.Avalonia.WebView.Desktop" Version="1.0.0" />
<PackageVersion Include="Sky.Avalonia.WebView.Desktop" Version="1.0.0" />
<PackageReference Include="Sky.Avalonia.WebView.Desktop" />
paket add Sky.Avalonia.WebView.Desktop --version 1.0.0
#r "nuget: Sky.Avalonia.WebView.Desktop, 1.0.0"
#addin nuget:?package=Sky.Avalonia.WebView.Desktop&version=1.0.0
#tool nuget:?package=Sky.Avalonia.WebView.Desktop&version=1.0.0
Sky.Avalonia.WebView2
English|中文 A WebView2 control for Avalonia that supports Blazor. This project is forked from https://github.com/sakib1361/Avalonia.WebView2 and has been modified.
Instructions
Installation
For example, if your Avalonia project is named TestApp
and uses a multi-project structure:
1. Install NuGet Packages
- In
TestApp
install BlazorWebView
dotnet add package Sky.Avalonia.BlazorWebView
or WebView:
dotnet add package Sky.Avalonia.WebView
2.InTestApp.Desktop
install
dotnet add package Sky.Avalonia.WebView.Desktop
or in TestApp.Android
install
dotnet add package Sky.Avalonia.WebView.Android
3.Edit the file:App.axaml.cs
using AvaloniaWebView;
OR
using AvaloniaBlazorWebView;
...
public override void RegisterServices()
{
base.RegisterServices();
// if you use only WebView
AvaloniaWebViewBuilder.Initialize(default);
// Or
// if you use BlazorWebView, please setting for blazor
AvaloniaBlazorWebViewBuilder.Initialize(default, setting =>
{
//because avalonia support the html css and js for resource ,so you must set the ResourceAssembly
setting.IsAvaloniaResource = true;
setting.ResourceAssembly = typeof(TestApp).Assembly;
}, inject =>
{
//you can inject the resource in this
inject.AddSingleton<WeatherForecastService>();
});
}
4.Edit the file:MainView.axaml
<UserControl ...>
...
<BlazorWebView x:Name="blazorWebView"/>
</UserControl>
5.Edit the file:MainView.axaml.cs
using Avalonia.Controls;
using Avalonia.Interactivity;
namespace TestApp.Views;
public partial class MainView : UserControl
{
public MainView()
{
InitializeComponent();
this.blazorWebView.HostPage = "wwwroot/index.html";
this.blazorWebView.RootComponents.Add(new AvaloniaBlazorWebView.Components.BlazorRootComponent
{
ComponentType= typeof(TestApp.Web.Shared.Components.Routes),
Selector= "#mainapp"
});
this.blazorWebView.WebViewNewWindowRequested+=BlazorWebView_WebViewNewWindowRequested;
}
private void BlazorWebView_WebViewNewWindowRequested(object? sender, WebView.Core.Events.WebViewNewWindowEventArgs e)
{
e.UrlLoadingStrategy=WebView.Core.Enums.UrlRequestStrategy.OpenInNewWindow;//Open links in a new window
}
......
}
6.Edit the Program.cs
file for Desktop projects or the MainActivity.cs
file for Android projects
Desktop:
public static AppBuilder BuildAvaloniaApp()
=> AppBuilder.Configure<App>()
.UsePlatformDetect()
.WithInterFont()
.LogToTrace()
.UseWindowWebView();//add this line
Android:
protected override AppBuilder CustomizeAppBuilder(AppBuilder builder)
{
return base.CustomizeAppBuilder(builder)
.WithInterFont()
.UseAndroidWebView();//add this line
}
Notes
When running Blazor, change <Project Sdk="Microsoft.NET.Sdk">
to <Project Sdk="Microsoft.NET.Sdk.Razor">
in the following projects: TestApp
, TestApp.Desktop
, and TestApp.Android
.
1.File: TestApp.csproj
- Modify or add:
...
<ItemGroup>
<Content Update="wwwroot\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
...
2.File: TestApp.Android.csproj
- Modify or add:
<PropertyGroup>
...
<StaticWebAssetsEnabled>false</StaticWebAssetsEnabled>
</PropertyGroup>
...
<ItemGroup>
<AndroidAsset Include="wwwroot\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</AndroidAsset>
</ItemGroup>
...
- Copy the files from the
wwwroot
folder inTestApp
to thewwwroot
folder inTestApp.Android
. - If using Blazor UI libraries, such as MudBlazor, please copy the files from
_content/MudBlazor/*
to thewwwroot
folder inTestApp.Android
as-is.
Sample Project
https://github.com/jkh404/Avalonia.WebView2/tree/master/TestApp
Screenshot Images
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net8.0
- Avalonia.WebView.Linux (>= 1.0.0)
- Avalonia.WebView.MacCatalyst (>= 1.0.0)
- Avalonia.WebView.Windows (>= 1.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 120 | 2/19/2025 |
A WebView2 control for Avalonia that supports Blazor.