mirror of
https://github.com/jellyfin/jellyfin-uwp.git
synced 2025-02-23 15:26:12 +00:00
Webview has been replaced with a more modern Webview 2 using Chromium engine, instead of (to my knowledge) the legacy EdgeHTML engine. The minimum target had to be increased from 10.0.16299.0 to 10.0.17763.0 for Webview2. And the Microsoft.UI.Xaml nuget package had to be added as dependency. This allows the UWP client the render the 10.9.9 Jellyfin web.
13 lines
513 B
XML
13 lines
513 B
XML
<UserControl
|
|
x:Class="Jellyfin.Controls.JellyfinWebView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:controls="using:Microsoft.UI.Xaml.Controls"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="300"
|
|
d:DesignWidth="400">
|
|
<controls:WebView2 x:Name="WView"/>
|
|
</UserControl>
|