23 lines
751 B
XML
23 lines
751 B
XML
<Window x:Class="CursorLang.LayoutPopupWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
WindowStyle="None"
|
|
ResizeMode="NoResize"
|
|
AllowsTransparency="True"
|
|
Background="Transparent"
|
|
ShowInTaskbar="False"
|
|
ShowActivated="False"
|
|
Topmost="True"
|
|
Focusable="False"
|
|
IsHitTestVisible="False">
|
|
<Border Background="#E6202020"
|
|
CornerRadius="4"
|
|
Padding="10,4">
|
|
<TextBlock x:Name="LayoutText"
|
|
Foreground="White"
|
|
FontSize="20"
|
|
FontWeight="SemiBold"
|
|
Text="—" />
|
|
</Border>
|
|
</Window>
|