设为首页 加入收藏
首 页 企业简介 项目案例 软件定制 行业软件 解决方案 企业资讯 服务专区 客服中心
服务项目
案例展示 更多 >>
·大数据分析系统 2020/11/16
·物资设备管理系统 2020/11/16
·数据采集与实时监控系统… 2020/11/16
·生产流程监控 2020/11/16
·上位机软件开发 2020/11/16
·润宇司法行政管理综合平… 2010/12/6
·连锁店管理系统软件 2010/7/31
·手机端公众号集成开发 2020/6/5
·驾校查询系统软件 2010/7/15
·业务技能培训学习软件 2020/6/5
联系人:李先生
电  话:029-87878512
手  机:13468700578
地  址:西安市欧亚大道丝路国际创意梦工厂4号楼
在线咨询:  762176615
Email:junsoft@126.com
 
当前的位置 >> 返回首页 >> 营销方案
软件开发实现自动锁屏和关屏
发布者:西安软件公司   发布时间:2019/2/27   阅读:22次

西安软件开发实现锁屏代码
public Form1( bool aLock ) {
            if (aLock) {
                //锁屏+关屏
                LockWorkStation();
                SendMessage( this.Handle, (uint)0x0112, (IntPtr)0xF170, (IntPtr)2 );
            }
            else {
                //禁止鼠标键盘动作+关屏
                BlockInput( true );
                System.Threading.Thread.Sleep( 10 );
                SendMessage( this.Handle, (uint)0x0112, (IntPtr)0xF170, (IntPtr)2 );
                BlockInput( false );
            }
            this.Close();
            //Application.Exit();
            Environment.Exit( 0 );
        }
        //关屏
        [DllImport( "user32.dll", CharSet = CharSet.Auto )]
        static extern IntPtr SendMessage( IntPtr hWnd, UInt32 Msg, IntPtr wParam, IntPtr lParam );
        //禁止鼠标键盘动作
        [return: MarshalAs( UnmanagedType.Bool )]
        [DllImport( "user32.dll", CharSet = CharSet.Auto, ExactSpelling = true )]
        public static extern bool BlockInput( [In, MarshalAs( UnmanagedType.Bool )] bool fBlockIt );
        //锁屏
        [DllImport( "user32.dll" )]
        public static extern bool LockWorkStation();

网站首页 | 关于我们 | 售后服务 | 网站地图 | 查看留言 | 在线留言 | 客服中心
© 版权所有:西安润宇软件科技有限公司 
公司地址:西安市丝路国际创意梦工厂4号楼  联系电话:029-87878512 手机:13468700578 联系人:李先生
Copyright ® 2011-2022 Xbwbw.com Inc. All Rights Reserved 
技术支持:西安润宇软件科技有限公司  陕ICP备11000720号