c#锁屏

第一步:将窗体的FormBorderStyle设置为none,WindowState设为Maximized

占据整个屏幕。

第二步:使用钩子监控全局键盘事件。即屏蔽掉大部分系统热键。但是屏蔽ctrl+alt+del 任务管理器则较复杂,这个特例后面讨论。

使用全局钩子应该注意的地方:将代码放到一个独立的类库里面(只有dll才能被注射到其他进程中)。

view sourceprint?using System;  

using System.Collections.Generic;  

using System.Text;  

using System.Runtime.InteropServices;  

using System.IO;  

using System.Reflection;  

   

namespace KeyboardHookDLL  

{  

    public class KeyboardHook  

    {  

        public delegate int KeyboardProc(int nCode, IntPtr wParam, IntPtr lParam);  

   

        static int hKeyboardHook = 0;  

        KeyboardProc KeyboardHookProcedure;  

   

        /// <summary>  

        /// 钩子函数,需要引用空间(using System.Reflection;)  

        /// 线程钩子监听键盘消息设为2,全局钩子监听键盘消息设为13  

        /// 线程钩子监听鼠标消息设为7,全局钩子监听鼠标消息设为14  

        /// </summary>  

   

        public const int WH_KEYBOARD = 13;  

        public const int WH_MOUSE_LL = 14;  

   

        public struct KeyboardMSG  

        {  

            public int vkCode;  

            public int scanCode;  

            public int flags;  

            public int time;  

            public int dwExtraInfo;  

   

        }  

        //private FileStream MyFs; 
view sourceprint?//各种键位的ASC码  

        private const byte LLKHF_ALTDOWN = 0x20;  

        private const byte VK_CAPITAL = 0x14;  

        private const byte VK_ESCAPE = 0x1B;  

        private const byte VK_F4 = 0x73;  

        private const byte VK_LCONTROL = 0xA2;  

        private const byte VK_NUMLOCK = 0x90;  

        private const byte VK_RCONTROL = 0xA3;  

        private const byte VK_SHIFT = 0x10;  

        private const byte VK_TAB = 0x09;  

        //public const int WH_KEYBOARD = 13;  

        private const int WH_KEYBOARD_LL = 13;  

        private const int WH_MOUSE = 7;  

        //private const int WH_MOUSE_LL = 14;  

        private const int WM_KEYDOWN = 0x100;  

        private const int WM_KEYUP = 0x101;  

        private const int WM_LBUTTONDBLCLK = 0x203;  

        private const int WM_LBUTTONDOWN = 0x201;  

        private const int WM_LBUTTONUP = 0x202;  

        private const int WM_MBUTTONDBLCLK = 0x209;  

        private const int WM_MBUTTONDOWN = 0x207;  

        private const int WM_MBUTTONUP = 0x208;  

        private const int WM_MOUSEMOVE = 0x200;  

        private const int WM_MOUSEWHEEL = 0x020A;  

        private const int WM_RBUTTONDBLCLK = 0x206;  

        private const int WM_RBUTTONDOWN = 0x204;  

        private const int WM_RBUTTONUP = 0x205;  

        private const int WM_SYSKEYDOWN = 0x104;  

        private const int WM_SYSKEYUP = 0x105;  

        //private static int hKeyboardHook = 0;  

   

        /// <summary>  

        /// vs2008中的声明方法,在vs2010中略有不同  

   

        /// </summary>  

        /// <returns></returns>  

        [DllImport("kernel32")]  

        public static extern int GetCurrentThreadId();  

   

        [DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention =  

   

CallingConvention.StdCall)]  

        public static extern int SetWindowsHookEx(int idHook, KeyboardProc lpfn, IntPtr  

   

hInstance, int threadId);  

   

        [DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention =  

   

CallingConvention.StdCall)]  

        public static extern bool UnhookWindowsHookEx(int idHook);  

   

        [DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]  

        public static extern int CallNextHookEx(int idHook, int nCode, IntPtr wParam, IntPtr lParam);  

   

        [DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.Winapi)]  

        public static extern short GetKeyState(int keycode);  

   

//在这里你可以自己定义要拦截的键。  

        private int KeyboardHookProc(int nCode, IntPtr wParam, IntPtr lParam)  

        {  

            KeyboardMSG m = (KeyboardMSG)Marshal.PtrToStructure(lParam, typeof(KeyboardMSG));  

             if (  

            ((int)m.vkCode == 91) || ((int)m.vkCode == 92) ||  

            //两个组合键  

            ((m.vkCode == VK_TAB) && ((m.flags & LLKHF_ALTDOWN) != 0)) ||  

   

            ((m.vkCode == VK_ESCAPE) && ((m.flags & LLKHF_ALTDOWN) != 0)) ||  

            ((m.vkCode == VK_F4) && ((m.flags & LLKHF_ALTDOWN) != 0)) ||  

            //用于三个组合键  

            (m.vkCode == VK_ESCAPE) && ((GetKeyState(VK_LCONTROL) & 0x8000) != 0) ||  

            ((int)m.vkCode >= 65 && (int)m.vkCode <= 90 && ((GetKeyState(0x12) & 0x8000) != 0) ) ||  

            ((int)m.vkCode >= 65 && (int)m.vkCode <= 90&& ((GetKeyState(0x11) & 0x8000) != 0)) ||  

            (m.vkCode == VK_ESCAPE) && ((GetKeyState(VK_RCONTROL) & 0x8000) != 0)  

            )  

            {  

                return 1;  

            }  

            return CallNextHookEx(hKeyboardHook, nCode, wParam, lParam);  

        }  

   // 安装钩子  

        public void KeyMaskStart()  

        {  

            if (hKeyboardHook == 0)  

            {  

                // 创建HookProc实例  

                KeyboardHookProcedure = new KeyboardProc(KeyboardHookProc);  

   

                // 设置线程钩子  

                hKeyboardHook = SetWindowsHookEx(WH_KEYBOARD, KeyboardHookProcedure,  

                    Marshal.GetHINSTANCE(Assembly.GetExecutingAssembly().GetModules()[0]), 0);  

                // 如果设置钩子失败  

                if (hKeyboardHook == 0)  

                {  

                    KeyMaskStop();  

                    throw new Exception("SetWindowsHookEx failed.");  

                }  

                用二进制流的方法打开任务管理器。而且不关闭流.这样任务管理器就打开不了  

                //MyFs = new FileStream(Environment.ExpandEnvironmentVariables("%windir%\\system32\\taskmgr.exe"),  

                //FileMode.Open);  

                //byte[] MyByte = new byte[(int)MyFs.Length];  

                //MyFs.Write(MyByte, 0, (int)MyFs.Length);  

            }  

        }  

   

        // 卸载钩子  

        public void KeyMaskStop()  

        {  

            bool retKeyboard = true;  

            if (hKeyboardHook != 0)  

            {  

                retKeyboard = UnhookWindowsHookEx(hKeyboardHook);  

                hKeyboardHook = 0;  

            }  

            if (!(retKeyboard))  

            {  

                throw new Exception("UnhookWindowsHookEx  failed.");  

            }  

        }  

    }  

} 
view sourceprint?  

第三步:这个时候你会发现,程序能屏蔽大部分的热键了,唯独ctrl+alt+del,你无论怎么去拦截,只要你按下这三个键,任务管理器活灵活现的出来了。

原因:这个组合键是系统级别滴(唯一的,ctrl+shift+esc不是)。普通的软件拦截是木有用的。得驱动级啥的才行吧。

既然如此,就只能转换思路了。既然不能治本,治标也行,只要能达到目的。

 

思路有两个:1是让任务管理器一旦运行就被结束,让用户不能操作。2是让任务管理器以另外的方式先运行并隐藏起来,用户就不能运行了。

 

思路1的代码:使用timer控件

view sourceprint?//引用这个空间using System.Diagnostics;  

        private void timer1_Tick(object sender, EventArgs e)  

        {  

            Process[] p = Process.GetProcesses();  

   

            foreach (Process p1 in p)  

            {  

                try 

                {  

                    if (p1.ProcessName.ToLower().Trim() == "taskmgr")//这里判断是任务管理器     

                    {  

                        p1.Kill();  

                        return;  

                    }  

                }  

                catch 

                {  

                    return;  

                }  

            }  

        } 
view sourceprint?  

思路2有两个比较好的办法

还有个不咋滴的办法,就是以文件流的方式打开taskmgr.exe(代码在上面的KeyboardHookDLL中能找到),在xp下还行,到win7下面就会有提示了。

办法1:以隐藏的方式运行。

view sourceprint?using System;  

using System.Collections.Generic;  

using System.ComponentModel;  

using System.Data;  

using System.Drawing;  

using System.Text;  

using System.Windows.Forms;  

using Microsoft.Win32;  

using System.Diagnostics;  

using System.Runtime.InteropServices;  

   

namespace KidWorld  

{  

    public partial class Form1 : Form  

    {  

   

        [DllImport("user32.dll")]  

   

        public static extern int FindWindow(string lpClassName, string lpWindowName);  

   

        [DllImport("User32.dll")]  

   

        public static extern Int32 SendMessage(  

   

        int hWnd, // handle to destination window  

   

        int Msg, // message  

   

        int wParam, // first message parameter  

   

        int lParam); // second message parameter  

        public Form1()  

        {  

            InitializeComponent();  

        }  

   

   

        private void Form1_Load(object sender, EventArgs e)  

        {  

   

            Process p = new Process();  

   

            p.StartInfo.WorkingDirectory = Environment.GetFolderPath(Environment.SpecialFolder.System);  

   

            p.StartInfo.FileName = "taskmgr.exe";  

   

            p.StartInfo.CreateNoWindow = true;  

   

            p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;  

   

            p.Start();  

   

        }  

   

        private void Form1_FormClosing(object sender, FormClosingEventArgs e)  

        {  

   

            const int WM_CLOSE = 0x0010;  

   

            int taskManager = FindWindow("#32770", "Windows Task Manager");  

   

            SendMessage(taskManager, WM_CLOSE, 0, 0);  

   

        }  

   

      

    }  

} 
view sourceprint?  

办法2:

view sourceprint?private void Form1_Load(object sender, EventArgs e)  

        {  

   

            //this.Text =Environment.GetFolderPath( Environment.SpecialFolder.System).ToString();  

   

            blockTaskMgr();  

             

        }  

   

        void blockTaskMgr() {  

   

            //阻塞其他程序读取  

            Stream oStream = File.Open(@"C:\WINDOWS\system32\taskmgr.exe", FileMode.OpenOrCreate, FileAccess.Write);  

   

   

        } 
view sourceprint?  

到这里锁屏就完成鸟。


 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要在电脑锁屏状态下播放视频,你可以使用C#编写一个程序,并利用Windows API来实现。下面是一种可能的实现方式: ```csharp using System; using System.Runtime.InteropServices; namespace LockScreenVideoPlayer { class Program { // 导入Windows API函数 [DllImport("user32.dll")] public static extern IntPtr FindWindow(string lpClassName, string lpWindowName); [DllImport("user32.dll")] public static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam); [DllImport("user32.dll")] public static extern bool ShowWindow(IntPtr hWnd, int nCmdShow); [DllImport("user32.dll")] public static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent); static void Main(string[] args) { const string className = "ConsoleWindowClass"; const string windowName = "Lock Screen Video Player"; // 创建一个窗口并设置其父窗口为桌面 IntPtr desktopHandle = FindWindow("Progman", "Program Manager"); IntPtr shellHandle = FindWindow("Shell_TrayWnd", null); IntPtr handle = FindWindow(className, windowName); if (handle == IntPtr.Zero) { handle = ConsoleHelper.CreateConsoleWindow(className, windowName); SetParent(handle, desktopHandle); SetParent(shellHandle, handle); } // 最大化窗口并显示 ShowWindow(handle, 3); // 最大化窗口 ShowWindow(shellHandle, 1); // 显示任务栏 // 在此处添加视频播放逻辑 Console.ReadLine(); } } public static class ConsoleHelper { [DllImport("kernel32.dll")] public static extern IntPtr GetConsoleWindow(); [DllImport("user32.dll")] public static extern bool SetWindowText(IntPtr hWnd, string lpString); [DllImport("kernel32.dll", SetLastError = true)] public static extern bool AllocConsole(); [DllImport("user32.dll", SetLastError = true)] public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int X, int Y, int cx, int cy, uint uFlags); [DllImport("user32.dll")] public static extern IntPtr GetDesktopWindow(); [DllImport("user32.dll", SetLastError = true)] public static extern bool GetWindowRect(IntPtr hWnd, out Rect lpRect); public struct Rect { public int Left; public int Top; public int Right; public int Bottom; } public static IntPtr CreateConsoleWindow(string className, string windowName) { AllocConsole(); IntPtr consoleHandle = GetConsoleWindow(); SetWindowText(consoleHandle, windowName); return consoleHandle; } } } ``` 在上面的代码中,我们创建了一个窗口并将其设置为锁屏状态下的桌面。你可以在代码中的 `// 在此处添加视频播放逻辑` 注释下方添加视频播放的具体逻辑,例如使用第三方库(如FFmpeg)来播放视频文件。 请注意,这种方法可能会涉及到系统安全策略的问题,并且需要以管理员权限运行。此外,由于涉及到操作系统的底层部分,所以也需要注意不同操作系统版本之间的兼容性。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值