// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace SystemTrayMenu.DllImports { using System.Runtime.InteropServices; /// /// wraps the methodcalls to native windows dll's. /// public static partial class NativeMethods { public static void User32SetProcessDPIAware() { _ = SetProcessDPIAware(); } [DllImport("user32.dll")] private static extern bool SetProcessDPIAware(); } }