Files
better-genshin-impact/BetterGenshinImpact/View/HtmlMaskWindow.xaml
2026-05-02 15:55:34 +08:00

16 lines
621 B
XML

<Window x:Class="BetterGenshinImpact.View.HtmlMaskWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wv2="clr-namespace:Microsoft.Web.WebView2.Wpf;assembly=Microsoft.Web.WebView2.Wpf"
Title="HtmlMaskWindow"
WindowStyle="None"
AllowsTransparency="True"
Background="Transparent"
WindowStartupLocation="Manual"
ShowInTaskbar="False"
Topmost="True">
<Grid>
<wv2:WebView2 x:Name="WebView" DefaultBackgroundColor="Transparent"/>
</Grid>
</Window>