使用系统自带的google(chrome)浏览器最大化打开页面(关闭,判断是否安装)

1,。关闭

载入系统api

[DllImport("user32.dll")]
        private static extern bool EnumWindows(EnumWindowsProc enumProc, IntPtr lParam);

        [DllImport("user32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
        private static extern int GetWindowText(IntPtr hWnd, StringBuilder lpString, int nMaxCount);

        [DllImport("user32.dll", CharSet = CharSet.Unicode)]
        private static extern int GetWindowTextLength(IntPtr hWnd);

        [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
        private static extern int GetClassName(IntPtr hWnd, StringBuilder lpClassName, int nMaxCount);

        [DllImport("user32.dll", ExactSpelling = true, CharSet = CharSet.Auto)]
        private static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);

        public delegate bool EnumWindowsProc(IntPtr hWnd, IntPtr lParam);
        [DllImport("user32.dll")]
        public static extern void keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtraInfo);

        public const int SW_HIDE = 0;
        public const int SW_SHOWNORMAL = 1;
        public const int SW_SHOWMINIMIZED = 2;
        public const int SW_SHOWMAXIMIZED = 3;

找到线程关掉它。

 var processes = Process.GetProcessesByName("chrome");
            //获取程序名的所有进程
            if (processes.Length > 0)
            {
                foreach (var app in processes)
                {
                    if (!app.HasExited)
                    {
                        app.Kill();//关闭进程
                    }
                }
            }

2,打开。

this.TransparencyKey = Color.Red;//背景色为红色后显示为空白。
            this.BackColor = Color.Red;
            string url = string.IsNullOrWhiteSpace( ConfigurationManager.AppSettings["Url"])?"http://localhost/":  ConfigurationManager.AppSettings["Url"] ;
            this.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width-100,8);//当前窗体位置
            this.Opacity =10; 
            System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
            startInfo.FileName ="chrome.exe";// Environment.CurrentDirectory + "\\Chrome\\App\\chrome.exe";
            startInfo.Arguments = $" --kiosk \"{url}\"";
            startInfo.UseShellExecute = true;
            startInfo.RedirectStandardInput = false;
            startInfo.RedirectStandardOutput = false;
            startInfo.RedirectStandardError = false;
            startInfo.CreateNoWindow = true;

            System.Diagnostics.Process.Start(startInfo);

3.获取是否系统安装了浏览器

 if (!Common.SystemGet.RegistryHelper.checkSoftIsSetupLM("Chrome")&& !Common.SystemGet.RegistryHelper.checkSoftIsSetupUser("Chrome"))
            {
                MessageBox.Show("请安装谷歌chrome浏览器。", "系统提示:", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值