• .net调用系统软键盘(兼容win7及win10)


    没有什么技术说明,也是查询出来的,在此做记录

    public class StartKeyBoard
        {
            public static bool isShowNumBoard = false;
            [DllImport("kernel32.dll", SetLastError = true)]
            public static extern bool Wow64DisableWow64FsRedirection(ref IntPtr ptr);
            [DllImport("kernel32.dll", SetLastError = true)]
            public static extern bool Wow64RevertWow64FsRedirection(IntPtr ptr);
            public static void StartKeyBoardFun()
            {
                string path = "C:/Program Files/Common Files/microsoft shared/ink/TabTip.exe";
                if (File.Exists(path))
                {
                    Process p = Process.Start(path);
                }
                else
                {
                    //判断软键盘是否进程是否已经存在,如果不存在进行调用
                    Process[] pro = Process.GetProcessesByName("osk");
                    //说明已经存在,不再进行调用
                    if (pro != null && pro.Length > 0)
                        return;
                    IntPtr ptr = new IntPtr();
                    bool isWow64FsRedirectionDisabled = Wow64DisableWow64FsRedirection(ref ptr);
                    if (isWow64FsRedirectionDisabled)
                    {
                        Process.Start(@"C:WINDOWSsystem32osk.exe");
                        bool isWow64FsRedirectionReverted = Wow64RevertWow64FsRedirection(ptr);
                    }
                }
            }

        }

  • 相关阅读:
    "Killed signal terminated program cc1plus"编译错误解决
    关于如何批量脚本停用(启用)SQL Server 和 ORACLE 数据库用户作业
    win10 激活
    关于LUN的归属控制器
    Git
    nacos集群配置服务注册不上来
    foxmail怎样加载已有的数据文件
    oracle监听服务的动态注册和静态注册
    jupyter notebook 下载及使用
    WebSocket部署之Nginx配置
  • 原文地址:https://www.cnblogs.com/ljs0322/p/8037555.html
Copyright © 2020-2023  润新知