c# windows process

  1. T

    How To Check If A Window Is Minimized?

    Hello, I need to check if a window is minimized in c# Here is what I did: { class RestoreWindow { [DllImportAttribute("user32.dll")] public static extern IntPtr FindWindow(string lpClassName, string lpWindowName); [DllImportAttribute("user32.dll")] public static extern bool...
Back
Top Bottom