2

嗨,我希望增加和减少第三方应用程序中滑块/轨迹栏的值。是否可以使用 sendMessage() 来做同样的事情。我有滑块的把手。有人可以帮忙吗?谢谢。

4

1 回答 1

3

首先像这样定义 SendMessage 函数

[DllImport("user32.dll", CharSet = CharSet.Auto)]
static extern IntPtr SendMessage(IntPtr hWnd, UInt32 Msg, IntPtr wParam, IntPtr lParam);

然后像这样更新滑块位置

uint TBM_GETPOS = 0x0400;
uint TBM_SETPOS = 0x0405;

IntPtr hWnd = ...
IntPtr pos = SendMessage(hWnd, TBM_GETPOS, 0, 0);
SendMessage(hWnd, TBM_SETPOS, 1, pos.ToInt32() + 1);

使用获取最大和最小可用位置

uint TBM_GETRANGEMAX = 0x0402;
uint TBM_GETRANGEMIN = 0x0401;

IntPtr max = SendMessage(hWnd, TBM_GETRANGEMAX, 0, 0);
IntPtr min = SendMessage(hWnd, TBM_GETRANGEMIN, 0, 0);
于 2011-01-17T22:53:38.763 回答