1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-22 05:40:11 +00:00
msfs-popout-panel-manager/WpfApp/PanelCoorOverlay.xaml

22 lines
977 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:d="http://schemas.microsoft.com/expression/blend/2008"
2022-06-30 23:53:08 +00:00
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
2022-01-27 13:40:04 +00:00
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Title="PanelCoorOverlay"
ResizeMode="NoResize"
WindowStyle="None"
Height="30"
Width="30"
2022-01-27 13:40:04 +00:00
SizeToContent="WidthAndHeight"
Background="#01F0F0FF"
AllowsTransparency="True"
2022-07-23 20:04:06 +00:00
MouseMove="Window_MouseMove"
Loaded="Window_Loaded">
2022-01-27 13:40:04 +00:00
<Grid>
<Label Name="lblPanelIndex" Content="1" HorizontalAlignment="Center" VerticalAlignment="Center" Padding="0,0,0,2"/>
<Image Height="30" Width="30" HorizontalAlignment="Left" VerticalAlignment="Top" Opacity="1" Source="resources/transparent.png"/>
2022-01-27 13:40:04 +00:00
</Grid>
</Window>