mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
21 lines
1 KiB
Text
21 lines
1 KiB
Text
|
<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>
|