打开/关闭显示器

时间:2009-04-03 11:06:56

标签: c# winapi

是否可以通过代码(C#)以编程方式打开/关闭显示器?

9 个答案:

答案 0 :(得分:30)

你有没有尝试谷歌搜索?

第一击: http://www.codeproject.com/KB/cs/Monitor_management_guide.aspx

我不需要使用Windows提供的一些DLL。

(我猜你需要一个C#解决方案,因为这是你申请的唯一标签。)

编辑2013年2月8日:

有人提到该解决方案不再适用于Windows 7和8.这里有一个在Windows 7下运行良好的解决方案,还没有尝试过Windows 8。

http://cocoa.ninja/posts/Turn-off-your-monitor-in-Csharp.html

namespace MonitorOff {

    public enum MonitorState {
        MonitorStateOn = -1,
        MonitorStateOff = 2,
        MonitorStateStandBy = 1
    }

    public partial class Form1 : Form {
        [DllImport("user32.dll")]
        private static extern int SendMessage(int hWnd, int hMsg, int wParam, int lParam);

        public Form1() {
            InitializeComponent();
            SystemEvents.SessionSwitch += SystemEvents_SessionSwitch;
        }

        void SystemEvents_SessionSwitch(object sender, SessionSwitchEventArgs e) {
            SetMonitorInState(MonitorState.MonitorStateOff);
        }

        private void button1_Click(object sender, EventArgs e) {
            SetMonitorInState(MonitorState.MonitorStateOff);
        }

        private void SetMonitorInState(MonitorState state) {
            SendMessage(0xFFFF, 0x112, 0xF170, (int)state);
        }
    }
}

答案 1 :(得分:17)

按开/关按钮


如果你想在代码中这样做,显然这可以在Win32 API中实现:

SendMessage hWnd,WM_SYSCOMMAND,SC_MONITORPOWER,param

其中WM_SYSCOMMAND = 0x112和 SC_MONITORPOWER = 0xF170和 param表示将监视器放入的模式: -1:开 2:关闭 1:节能模式

hWnd可以是任何窗口的句柄 - 所以如果你有一个表单,这样的东西应该可以工作

int WM_SYSCOMMAND = 0x112;
int SC_MONITORPOWER = 0xF170;

[DllImport("user32.dll", CharSet = CharSet.Auto)]
private static extern int SendMessage(IntPtr hWnd, int wMsg, IntPtr wParam, IntPtr lParam);

public static void Main(string[] args)
{
    Form f = new Form();
    bool turnOff = true;   //set true if you want to turn off, false if on
    SendMessage(f.Handle, WM_SYSCOMMAND, (IntPtr)SC_MONITORPOWER, (IntPtr)(turnOff ? 2 : -1));
}

注意我实际上没有尝试过这个......

答案 2 :(得分:14)

上面的答案https://stackoverflow.com/a/713504/636189非常适合关闭Windows 7/8显示器,但不能用于唤醒它。在这些系统上,你需要像这样做一些hackish(如https://stackoverflow.com/a/14171736/636189所示):

[DllImport("user32.dll")]
static extern void mouse_event(Int32 dwFlags, Int32 dx, Int32 dy, Int32 dwData, UIntPtr dwExtraInfo);

private const int MOUSEEVENTF_MOVE = 0x0001;

private void Wake(){
mouse_event(MOUSEEVENTF_MOVE, 0, 1, 0, UIntPtr.Zero);
Sleep(40);
mouse_event(MOUSEEVENTF_MOVE, 0, -1, 0, UIntPtr.Zero);
}

答案 3 :(得分:12)

此代码可用于打开和关闭..它也适用于Windows 7。

   private int SC_MONITORPOWER = 0xF170;

    private uint WM_SYSCOMMAND = 0x0112;

    [DllImport("user32.dll")]
    static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam);



    enum MonitorState
    {
        ON = -1,
        OFF = 2,
        STANDBY = 1
    }
    private void SetMonitorState(MonitorState state)
    {
        Form frm = new Form();

        SendMessage(frm.Handle, WM_SYSCOMMAND, (IntPtr)SC_MONITORPOWER, (IntPtr)state);

    }

要调用该函数,您必须执行以下操作:

SetMonitorState(MonitorState.ON);

OR

SetMonitorState(MonitorState.OFF);

注意:此代码在WPF应用程序中测试。使用以下命名空间:

using System.Runtime.InteropServices;
using System.Windows.Forms;

答案 4 :(得分:11)

对于谁在控制台应用程序上想要此功能:

using System;
using System.Runtime.InteropServices;
using System.Timers;

namespace TurnScreenOFF
{
    class Program
    {
        private static int WM_SYSCOMMAND = 0x0112;
        private static uint SC_MONITORPOWER = 0xF170;

        public static void Main(string[] args)
        {
            SendMessage(GetConsoleWindow(), WM_SYSCOMMAND, (IntPtr)SC_MONITORPOWER, (IntPtr)2);
        }

        [DllImport("kernel32.dll")]
        static extern IntPtr GetConsoleWindow();

        [DllImport("user32.dll", CharSet = CharSet.Auto)]
        private static extern int SendMessage(IntPtr hWnd, int wMsg, IntPtr wParam, IntPtr lParam);
    }
}

适应和测试。 100%在Windows 8上工作。

答案 5 :(得分:6)

我找不到复制粘贴示例,因此我自己创建了一个,不要忘记添加对System.Windows.Forms的引用。

using System;
using System.Runtime.InteropServices;
using System.Threading;
using System.Windows.Forms;


namespace monitor_on_off
{
    class Program
    {
        [DllImport("user32.dll")]
        static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wParam, IntPtr lParam);
        [DllImport("user32.dll")]
        static extern void mouse_event(Int32 dwFlags, Int32 dx, Int32 dy, Int32 dwData, UIntPtr dwExtraInfo);

        private const int WmSyscommand = 0x0112;
        private const int ScMonitorpower = 0xF170;
        private const int MonitorShutoff = 2;
        private const int MouseeventfMove = 0x0001;

        public static void MonitorOff(IntPtr handle)
        {
            SendMessage(handle, WmSyscommand, (IntPtr)ScMonitorpower, (IntPtr)MonitorShutoff);
        }

        private static void MonitorOn()
        {
            mouse_event(MouseeventfMove, 0, 1, 0, UIntPtr.Zero);
            Thread.Sleep(40);
            mouse_event(MouseeventfMove, 0, -1, 0, UIntPtr.Zero);
        }

        static void Main()
        {
            var form = new Form();

            while (true)
            {
                MonitorOff(form.Handle);
                Thread.Sleep(5000);
                MonitorOn();
                Thread.Sleep(5000);
            }
        }
    }
}

答案 6 :(得分:3)

我已经完成了每个人发布的每种方法,以便让显示器进入睡眠状态,并在其他时间唤醒它。当然,SendMessage()可以与Windows XP一起使用,但在监视器休眠一段时间后它不会唤醒显示器。我曾尝试使用C#,DOS,脚本来播放电源配置文件和Powershell。最终我放弃了,回到了开头,我的第一个想法被证明是正确的。关闭显示器后,您需要使用PostMessage(),更好的是,您应该始终使用PostMessage();

因此,您之前看到的所有代码都是正确的,而是使用以下代码:

using System.Runtime.InteropServices;
[DllImport("user32.dll")]
static extern IntPtr PostMessage(int hWnd, int msg, int wParam, int lParam);
PostMessage(-1, WM_SYSCOMMAND, SC_MONITORPOWER, MONITOR_OFF);

此时执行并正常工作(2015年5月11日)我正在运行

  • Windows 7专业版6.1.7601 Service Pack 1 Build 7601
  • Visual Studio Profesional 2013版本12.0.31101.00更新4
  • .NET Framework 4.5.51209
  • C#

我的系统完全是最新的。

答案 7 :(得分:1)

SLOC最少的答案:

using System;
using System.Windows.Forms;
using System.Runtime.InteropServices;

static class Program
{
    [DllImport("user32.dll")]
    static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, int wParam, int lParam);

    [STAThread]
    static void Main()
    {
        SendMessage(new Form().Handle, 0x0112, 0xF170, 2);
    }
}

答案 8 :(得分:0)

对于Windows 10(在Pro 64位上测试),我能够使用本页中提到的SendMessage()技术关闭显示器。 但是,我无法重新打开显示器:“鼠标移动”技巧不起作用,SendMessage()技术将屏幕重新打开一秒钟然后关闭,而使用PostMessage()却没有改变任何东西。

但是技巧实际上很简单,我要做的就是用SendKeys()模拟按键。我在这里使用ALT是因为它本身对系统没有影响,但是可以是其他任何键。

SendKeys.SendWait("%");

如果您不使用Windows.Forms,则也可以使用SendInput()发送“ ALT”,但实现时间更长。