Skip to content

Commit

Permalink
Fixes #466
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJoeFin committed Jun 1, 2024
1 parent 70c7c54 commit d1fee3c
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Text-Grab/Controls/NotifyIconWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,20 @@
Width="0"
Height="0"
Activated="Window_Activated"
Background="Black"
Background="Transparent"
IsHitTestVisible="False"
Left="-50"
Opacity="0"
ShowInTaskbar="False"
ToolTip="Text Grab"
Top="-50"
WindowStyle="ToolWindow"
mc:Ignorable="d">
<Grid>
<WpfUiIcon:NotifyIcon Icon="/Images/TealSelect40.png" LeftClick="NotifyIcon_LeftClick">
<WpfUiIcon:NotifyIcon
Icon="/Images/TealSelect40.png"
LeftClick="NotifyIcon_LeftClick"
ToolTip="Text Grab">
<WpfUiIcon:NotifyIcon.Menu>
<ContextMenu>
<MenuItem
Expand All @@ -29,6 +35,7 @@
<wpfui:SymbolIcon Symbol="Settings24" />
</MenuItem.Icon>
</MenuItem>
<Separator />
<MenuItem
x:Name="LastGrabMenuItem"
Click="LastGrabMenuItem_Click"
Expand All @@ -53,6 +60,7 @@
<wpfui:SymbolIcon Symbol="History24" />
</MenuItem.Icon>
</MenuItem>
<Separator />
<MenuItem
x:Name="FullscreenGrabMenuItem"
Click="FullscreenGrabMenuItem_Click"
Expand All @@ -77,6 +85,7 @@
<wpfui:SymbolIcon Symbol="WindowEdit20" />
</MenuItem.Icon>
</MenuItem>
<Separator />
<MenuItem
x:Name="CloseMenuItem"
Click="Exit_Click"
Expand Down

0 comments on commit d1fee3c

Please sign in to comment.