Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ready for Review - [Mouse Without Borders] - refactoring "Common" classes (Part 4) - #35155 #37579

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
[MouseWithoutBorders] - cleaning up changes - #35155
  • Loading branch information
mikeclayton committed Feb 22, 2025
commit 1077d847e40a5af04a7b788ed98fc6879f4eb807
5 changes: 2 additions & 3 deletions src/modules/MouseWithoutBorders/App/Core/Event.cs
Original file line number Diff line number Diff line change
@@ -9,6 +9,8 @@
using System.Threading;
using System.Threading.Tasks;

using MouseWithoutBorders.Class;

// <summary>
// Keyboard/Mouse hook callback implementation.
// </summary>
@@ -17,9 +19,6 @@
// 2009-... modified by Truong Do (TruongDo).
// 2023- Included in PowerToys.
// </history>
using MouseWithoutBorders.Class;
using MouseWithoutBorders.Form;

namespace MouseWithoutBorders.Core;

internal static class Event
8 changes: 4 additions & 4 deletions src/modules/MouseWithoutBorders/App/Core/Helper.cs
Original file line number Diff line number Diff line change
@@ -13,6 +13,10 @@
using System.Security.Principal;
using System.Windows.Forms;

using Microsoft.Win32;
using MouseWithoutBorders.Class;
using static System.Windows.Forms.Control;

// <summary>
// Some other helper methods.
// </summary>
@@ -21,10 +25,6 @@
// 2009-... modified by Truong Do (TruongDo).
// 2023- Included in PowerToys.
// </history>
using Microsoft.Win32;
using MouseWithoutBorders.Class;
using static System.Windows.Forms.Control;

namespace MouseWithoutBorders.Core;

internal static class Helper
4 changes: 2 additions & 2 deletions src/modules/MouseWithoutBorders/App/Core/Launch.cs
Original file line number Diff line number Diff line change
@@ -9,6 +9,8 @@
using System.Runtime.InteropServices;
using System.Security.Principal;

using MouseWithoutBorders.Class;

// <summary>
// Impersonation.
// </summary>
@@ -17,8 +19,6 @@
// 2009-... modified by Truong Do (TruongDo).
// 2023- Included in PowerToys.
// </history>
using MouseWithoutBorders.Class;

namespace MouseWithoutBorders.Core;

internal static class Launch