2022-07-23 19:23:32 +00:00
|
|
|
<mah:MetroWindow x:Class="MSFSPopoutPanelManager.WpfApp.TouchPanelWebViewDialog"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:mah="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
|
|
|
|
xmlns:wv2="clr-namespace:Microsoft.Web.WebView2.Wpf;assembly=Microsoft.Web.WebView2.Wpf"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
Title="Touch Panel"
|
|
|
|
Height="450"
|
|
|
|
Width="800"
|
|
|
|
WindowStyle="None"
|
2022-08-08 06:07:24 +00:00
|
|
|
AllowsTransparency="True"
|
|
|
|
Closing="Window_Closing">
|
2022-07-23 19:23:32 +00:00
|
|
|
<Window.Background>
|
|
|
|
<SolidColorBrush Color="#FFF0F0F0" Opacity="0.01" />
|
|
|
|
</Window.Background>
|
|
|
|
<Grid>
|
2022-09-06 04:07:03 +00:00
|
|
|
<wv2:WebView2 Name="webView" DefaultBackgroundColor="Transparent" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Source=""/>
|
2022-07-23 19:23:32 +00:00
|
|
|
</Grid>
|
|
|
|
</mah:MetroWindow>
|