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/PanelCoorOverlay.xaml
2022-07-24 10:45:08 -04:00

21 lines
959 B
XML

<Window x:Class="MSFSPopoutPanelManager.WpfApp.PanelCoorOverlay"
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"
mc:Ignorable="d"
Title="PanelCoorOverlay"
ResizeMode="NoResize"
WindowStyle="None"
Height="46"
Width="55"
SizeToContent="WidthAndHeight"
Background="#01F0F0FF"
AllowsTransparency="True"
MouseMove="Window_MouseMove"
Loaded="Window_Loaded">
<Grid>
<Label Name="lblPanelIndex" Content="1" HorizontalAlignment="Center" VerticalAlignment="Center"/>
<Image Height="46" Width="55" HorizontalAlignment="Left" VerticalAlignment="Top" Opacity="1" Source="resources/transparent.png"/>
</Grid>
</Window>