Files
cursor-lang/CursorLang/Views/LayoutPopupWindow.xaml
T
2026-08-08 21:24:02 +05:00

27 lines
1.0 KiB
XML

<Window x:Class="CursorLang.Views.LayoutPopupWindow"
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:vm="clr-namespace:CursorLang.ViewModels"
mc:Ignorable="d"
d:DataContext="{d:DesignInstance Type=vm:LayoutPopupViewModel}"
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 Foreground="White"
FontSize="20"
FontWeight="SemiBold"
Text="{Binding ShortName}" />
</Border>
</Window>