我正试图用Powershell做一些技巧。我想编写一个脚本,该脚本可以在powershell控制台内监听鼠标事件(点击,移动等)。
例如,当我的脚本处于活动状态时,当我在powershell控制台中单击鼠标时,控制台可以输出光标的位置。
有可能吗?如果可能,怎么样?
提前致谢。
答案 0 :(得分:1)
我发现可以使用以下方法执行此操作:
[System.Windows.Forms.UserControl]::MouseButtons
返回当前按下的鼠标按钮的字符串。我们根据WorWin对此进行轮询和[System.Windows.Forms.Cursor]::Position
,以跟踪鼠标的位置以及按下的按钮。
跟踪控制台窗口中鼠标的位置有点棘手。我个人使用自定义类。
Add-Type -ReferencedAssemblies System.Drawing @"
using System;
using System.Drawing;
using System.Runtime.InteropServices;
public class Window
{
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect);
[DllImport("user32.dll")]
public static extern IntPtr GetForegroundWindow();
public RECT bounds;
public bool isForeground;
private IntPtr hWnd;
public int Width;
public int Height;
public Window(IntPtr handle)
{
hWnd = handle;
Update();
}
public void Update()
{
if(GetWindowRect(hWnd, out bounds))
{
Width = bounds.Right - bounds.Left;
Height = bounds.Bottom - bounds.Top;
if(GetForegroundWindow() == hWnd){isForeground = true;}
else{isForeground = false;}
}
}
public bool Contains(Point pt)
{
return bounds.Contains(pt);
}
}
public struct RECT
{
public int Left;
public int Top;
public int Right;
public int Bottom;
public Boolean Contains(Point pt)
{
if( (pt.X >= Left) && (pt.X < Right) && (pt.Y >= Top) && (pt.Y < Bottom) ){ return true;}
return false;
}
}
public struct POINT
{
public int X;
public int Y;
public static implicit operator Point(POINT point)
{
return new Point(point.X, point.Y);
}
}
"@
获取Powershell控制台窗口:
$ourID = (get-process -id (Get-WmiObject -class win32_process -Filter ("ProcessID = $pid")).parentprocessid).mainwindowhandle;
$win = New-Object Window($ourID);
现在,$win.bounds
为我们提供了控制台窗口的外部边界,所以如果我们想要找到光标所在的缓冲区,我们就必须在边界上做一些工作。
$innerOffsets = new-object RECT;
$innerOffsets.Top = [Windows.Forms.SystemInformation]::CaptionHeight + [Windows.Forms.SystemInformation]::HorizontalResizeBorderThickness + [Windows.Forms.SystemInformation]::Border3DSize.Height;
$innerOffsets.Bottom = -([Windows.Forms.SystemInformation]::HorizontalResizeBorderThickness + [Windows.Forms.SystemInformation]::Border3DSize.Height);
$inneroffsets.Left = [Windows.Forms.SystemInformation]::VerticalResizeBorderThickness + [Windows.Forms.SystemInformation]::Border3DSize.Width;
$inneroffsets.Right = -([Windows.Forms.SystemInformation]::VerticalResizeBorderThickness + [Windows.Forms.SystemInformation]::Border3DSize.Width);
if([console]::bufferheight -gt [console]::windowheight)
{
$inneroffsets.right -= [Windows.Forms.SystemInformation]::HorizontalScrollBarThumbWidth;
}
if([console]::bufferwidth -gt [console]::windowwidth)
{
$inneroffsets.bottom -= [Windows.Forms.SystemInformation]::VerticalScrollBarThumbHeight;
}
这为我们提供了获取窗口内边界所需的偏移量。从这里我们可以得到窗口的相对位置。
$mp = [Windows.Forms.Cursor]::Position;
$mp.x -= ($win.bounds.left + $inneroffsets.left);
$mp.y -= ($win.bounds.top + $inneroffsets.top);
现在我们可以将鼠标位置转换为缓冲单元格位置。
$innerWidth = ($win.bounds.right + $inneroffsets.right) - ($win.bounds.left + $inneroffsets.left);
$innerheight = ($win.bounds.bottom + $inneroffsets.bottom) - ($win.bounds.top + $inneroffsets.top);
$mp.x = [Math]::Floor($mp.x / ( $innerwidth / [console]::windowWidth));
$mp.y = [Math]::Floor($mp.y / ( $innerheight / [console]::windowheight));
每次检查时都必须使用$win.update()
。您还可以使用$win.isforeground
和[Windows.Forms.UserControl]::MouseButtons -match "Left"
来检查何时单击控制台窗口。
答案 1 :(得分:0)
不确定所有这些都将拼凑在一起。 也许这会有所帮助。
<# Gets the Mouse Position #>
[System.Windows.Forms.Cursor]::Position