implemeted main feature - first try

This commit is contained in:
2026-08-08 21:03:13 +05:00
parent 3ab110aa91
commit a1ff8cc923
5 changed files with 346 additions and 14 deletions
+22
View File
@@ -0,0 +1,22 @@
<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>