c#的过程.开始“chrome.exe"/声明高度
本文关键字:quot 声明 高度 exe 过程 开始 chrome | 更新日期: 2023-09-27 18:08:45
你好,我想使用
process start 'chrome.exe'
It is working:
private void btnSTBAutoLogin_Click(object sender, EventArgs e)
{
try
{
System.Diagnostics.Process.Start("CHROME.EXE", "https://www.google.com/chrome/browser/desktop/index.html");
}
catch
{
System.Diagnostics.Process.Start("IEXPLORE.EXE", "https://www.google.com/chrome/browser/desktop/index.html");
}
}
问题:
我想在btnSTBAutoLogin
点击时调整chrome页面的大小。
我可以调整chrome页面大小吗?例:
- height: 1280
- 宽度:800
你可以使用MoveWindow -来改变窗口大小和GetWindowRect -来获得窗口的当前位置。
首先添加以下命名空间:
using System.Diagnostics;
using System.Runtime.InteropServices;
下一步-添加p/调用代码:
[DllImport("user32.dll", SetLastError = true)]
internal static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);
[DllImport("user32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool GetWindowRect(IntPtr hWnd, ref Rect lpRect);
[StructLayout(LayoutKind.Sequential)]
private struct Rect
{
public int Left;
public int Top;
public int Right;
public int Bottom;
}
最后在你的Process.Start
之后,你可以使用这个过程,它改变了chrome窗口的大小:
public void SetChromeSize(int width, int height)
{
var procsChrome = Process.GetProcessesByName("chrome"); // there are always many chrome processes, so we have to find the process with a WindowHandle
foreach (var chrome in procsChrome)
{
if (chrome.MainWindowHandle == IntPtr.Zero) // the chrome process must have a window
continue;
var rct = new Rect();
GetWindowRect(chrome.MainWindowHandle, ref rct); // find and use current position of chrome window
MoveWindow(chrome.MainWindowHandle, rct.Left, rct.Top, width, height, true); //use MoveWindow to change size and save current position
break;
}
}