Files
VDownload/VDownload.GUI/VDownload.GUI.Services/VDownload.GUI.Services.WebView/WebViewWindow.xaml

13 lines
572 B
Plaintext
Raw Normal View History

2024-02-13 02:59:40 +01:00
<?xml version="1.0" encoding="utf-8"?>
<Window
x:Class="VDownload.GUI.Services.WebView.WebViewWindow"
2021-12-19 14:58:47 +01:00
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
2024-02-13 02:59:40 +01:00
xmlns:local="using:VDownload.GUI.Services.WebView"
2021-12-19 14:58:47 +01:00
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
2024-02-13 02:59:40 +01:00
Closed="Window_Closed">
<WebView2 x:Name="WebView" NavigationCompleted="WebView_NavigationCompleted"/>
</Window>