Initial commit to new repository
This commit is contained in:
26
src/AxCopilot/Views/TrayMenuWindow.xaml
Normal file
26
src/AxCopilot/Views/TrayMenuWindow.xaml
Normal file
@@ -0,0 +1,26 @@
|
||||
<Window x:Class="AxCopilot.Views.TrayMenuWindow"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
WindowStyle="None"
|
||||
AllowsTransparency="True"
|
||||
Background="Transparent"
|
||||
Topmost="True"
|
||||
ShowInTaskbar="False"
|
||||
ResizeMode="NoResize"
|
||||
SizeToContent="WidthAndHeight"
|
||||
Deactivated="Window_Deactivated">
|
||||
|
||||
<Border x:Name="RootBorder"
|
||||
CornerRadius="12"
|
||||
BorderThickness="1"
|
||||
BorderBrush="{DynamicResource BorderColor}"
|
||||
Background="{DynamicResource LauncherBackground}"
|
||||
Padding="8 10"
|
||||
MinWidth="240">
|
||||
<Border.Effect>
|
||||
<DropShadowEffect BlurRadius="20" ShadowDepth="4" Opacity="0.18" Color="Black"/>
|
||||
</Border.Effect>
|
||||
|
||||
<StackPanel x:Name="MenuPanel" />
|
||||
</Border>
|
||||
</Window>
|
||||
Reference in New Issue
Block a user