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