您好,其他开发人员
我有一个问题。我有一个困扰我的问题。
我已经用C#编写了一个程序,该程序可以打开Chrome浏览器。 但是,Chrome浏览器始终在上次打开的位置打开。 是否有可能在每次启动时将浏览器窗口直接放在第二个屏幕上? 我的目标是Chrome浏览器始终会在其他屏幕上自动启动。
有人知道吗?
谢谢
答案 0 :(得分:0)
您可以尝试以下操作:
using System;
using System.Diagnostics;
using System.Linq;
using System.Runtime.InteropServices;
using System.Threading;
using System.Windows.Forms;
...........................
public void StartChrome()
{
var allScreens = Screen.AllScreens.ToList();
var screenOfChoice = allScreens[1]; // repllace with your own logic
var chromeProcess = new Process
{
StartInfo =
{
Arguments = "https://www.google.com --new-window --start-fullscreen",
FileName = @"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe",
WindowStyle = ProcessWindowStyle.Normal
}
};
chromeProcess.Start();
// Needed to move the the process.
Thread.Sleep(1000);
// setting the x value here can help you determmine which screen to move the process to
// 0 will be the first screen, and the '.WorkingArea.Right' value to the previous screen's '.WorkingArea.Right' would change which
// screen to display it on.
MoveWindow(chromeProcess.MainWindowHandle, screenOfChoice.WorkingArea.Right, screenOfChoice.WorkingArea.Top, screenOfChoice.WorkingArea.Width, screenOfChoice.WorkingArea.Height, false);
}
[DllImport("user32.dll", SetLastError = true)]
internal static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);
编辑:
仅进一步说明一下,如果您有3个分辨率为1920x1080
的屏幕,则在x
方法中设置MoveWindow()
参数会将窗口放置在第一个屏幕的最左侧屏幕上,将x
参数设置为1920
会将应用程序放置在第二屏幕上,将x
参数设置为3840
则过程将在第三屏幕上。通过访问所有屏幕及其宽度,您应该几乎可以一直将准确的过程放置在所选屏幕上,除非用户对他们的多屏幕布局进行了自定义排序,那么我不确定100%是否这将是理想的。
编辑2:
以上代码不适用于.NetCore 2.2
以及更低版本,因为它使用System.Windows.Forms
,我相信只会在.NetCore 3.0
中引入