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

23 lines
1,017 B
Text
Raw Normal View History

2022-01-27 13:40:04 +00:00
<Window x:Class="MSFSPopoutPanelManager.WpfApp.PanelCoorOverlay"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:MSFSPopoutPanelManager.WpfApp"
mc:Ignorable="d"
Title="PanelCoorOverlay"
ResizeMode="NoResize"
WindowStyle="None"
Height="46"
Width="55"
SizeToContent="WidthAndHeight"
Background="#01F0F0FF"
AllowsTransparency="True"
Topmost="True"
MouseMove="Window_MouseMove">
<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>