mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Improve code quality
This commit is contained in:
parent
dc92f6a271
commit
102636f357
1 changed files with 4 additions and 10 deletions
|
|
@ -2,6 +2,7 @@
|
||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Media;
|
using System.Media;
|
||||||
|
using System.Reactive.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Windows;
|
using System.Windows;
|
||||||
using System.Windows.Controls;
|
using System.Windows.Controls;
|
||||||
|
|
@ -10,7 +11,6 @@ using System.Windows.Input;
|
||||||
using System.Windows.Interop;
|
using System.Windows.Interop;
|
||||||
using System.Windows.Media;
|
using System.Windows.Media;
|
||||||
using System.Windows.Media.Animation;
|
using System.Windows.Media.Animation;
|
||||||
using System.Windows.Controls;
|
|
||||||
using System.Windows.Shapes;
|
using System.Windows.Shapes;
|
||||||
using System.Windows.Threading;
|
using System.Windows.Threading;
|
||||||
using CommunityToolkit.Mvvm.DependencyInjection;
|
using CommunityToolkit.Mvvm.DependencyInjection;
|
||||||
|
|
@ -22,14 +22,8 @@ using Flow.Launcher.Infrastructure.UserSettings;
|
||||||
using Flow.Launcher.Plugin.SharedCommands;
|
using Flow.Launcher.Plugin.SharedCommands;
|
||||||
using Flow.Launcher.ViewModel;
|
using Flow.Launcher.ViewModel;
|
||||||
using ModernWpf.Controls;
|
using ModernWpf.Controls;
|
||||||
using Key = System.Windows.Input.Key;
|
|
||||||
using System.Media;
|
|
||||||
using DataObject = System.Windows.DataObject;
|
using DataObject = System.Windows.DataObject;
|
||||||
using System.Windows.Media;
|
using Key = System.Windows.Input.Key;
|
||||||
using System.Windows.Interop;
|
|
||||||
using Windows.Win32;
|
|
||||||
using System.Reactive.Linq;
|
|
||||||
using System.Windows.Shapes;
|
|
||||||
using MouseButtons = System.Windows.Forms.MouseButtons;
|
using MouseButtons = System.Windows.Forms.MouseButtons;
|
||||||
using NotifyIcon = System.Windows.Forms.NotifyIcon;
|
using NotifyIcon = System.Windows.Forms.NotifyIcon;
|
||||||
using Screen = System.Windows.Forms.Screen;
|
using Screen = System.Windows.Forms.Screen;
|
||||||
|
|
@ -539,10 +533,10 @@ namespace Flow.Launcher
|
||||||
{
|
{
|
||||||
switch (e.Button)
|
switch (e.Button)
|
||||||
{
|
{
|
||||||
case System.Windows.Forms.MouseButtons.Left:
|
case MouseButtons.Left:
|
||||||
_viewModel.ToggleFlowLauncher();
|
_viewModel.ToggleFlowLauncher();
|
||||||
break;
|
break;
|
||||||
case System.Windows.Forms.MouseButtons.Right:
|
case MouseButtons.Right:
|
||||||
|
|
||||||
contextMenu.IsOpen = true;
|
contextMenu.IsOpen = true;
|
||||||
// Get context menu handle and bring it to the foreground
|
// Get context menu handle and bring it to the foreground
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue