Detect if monitor is on c#

WMI might help.

In Vista+, there is the WmiMonitorBasicDisplayParams class, where the "Active" property tells you if the display is active.

Here's an example which works for me:

using System.Management;

// ...

var query = "select * from WmiMonitorBasicDisplayParams";
using(var wmiSearcher = new ManagementObjectSearcher("\\root\\wmi", query))
{
    var results = wmiSearcher.Get();
    foreach (ManagementObject wmiObj in results)
    {
        // get the "Active" property and cast to a boolean, which should 
        // tell us if the display is active. I've interpreted this to mean "on"
        var active = (Boolean)wmiObj["Active"];
    }
}

All the Active property does is tell you if Windows is using the display or not. Also DVI/HDMI will report a connection even when the display is turned off. In short, there is no method for checking other than something homemade--like hooking up a light sensor or webcam and pointing it at the monitor's power light :)

Tags:

C#