1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 14:10:45 +00:00
msfs-popout-panel-manager/WpfApp/TouchPanelWebViewDialog.xaml
2022-07-23 15:23:32 -04:00

20 lines
1 KiB
XML

<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"
AllowsTransparency="True">
<Window.Background>
<SolidColorBrush Color="#FFF0F0F0" Opacity="0.01" />
</Window.Background>
<Grid>
<wv2:WebView2 Name="webView" DefaultBackgroundColor="Transparent" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
</Grid>
</mah:MetroWindow>