1

ボタンが押されているかどうかを調べたい。これはボタンの公式のプロパティではないようです (ボタン スタイルのチェックボックスではありません!) が、アクセス可能のようです。たとえば、目的の結果が得られるはずの BM_GETSTATE メッセージがあります。

問題は、多くの場合、ボタンのウィンドウ ハンドルを取得できないことです (これらは別のツールバーの一部ですが、AutomationElement で区別できます)。そして、SendMessage 関数にはそのようなハンドルが必要です。

だから..私がそのプロパティにアクセスする方法はありますか? 他の自動化プログラムで見たことがあるので、アクセス可能であることは知っていますが、アクセス方法がわかりません。

ここでは C# を使用しますが、どの C コードでも問題ありません。

どうもありがとう

4

1 に答える 1

1

(編集:ここでようやくコード形式を適切に作成することができました-最初に4つのスペースを挿入するだけです。)

楽しんでください、それを機能させるのにかなりの時間がかかりました..しかし今、私は新しいレベルに到達したように感じます. :)

(適切にフォーマットする方法を教えてください-引用とコードの両方が失敗しました)

int res;
#region direct method
int hwnd = ae.Current.NativeWindowHandle;
if (hwnd != 0)
{
    const UInt32 BM_GETSTATE = 0x00F2;
    res = SendMessage(hwnd, BM_GETSTATE, 0, 0);
}
#endregion
else
#region method via toolbar
{
    AutomationElement parent = TreeWalker.RawViewWalker.GetParent(ae);
    while ((parent != null) && (parent.Current.ControlType != ControlType.ToolBar))
        parent = TreeWalker.RawViewWalker.GetParent(ae);
    if (parent != null)
    {
        int toolBarHandle = parent.Current.NativeWindowHandle;
        #region defines
        const int WM_USER = 0x400;
        const int TB_GETSTATE = (WM_USER + 18);
        const int TB_GETBUTTON = (WM_USER + 23);
        const int TB_BUTTONCOUNT = (WM_USER + 24);
        #endregion

        #region get correct child number
        int numButtons = SendMessage(toolBarHandle, TB_BUTTONCOUNT, 0, 0);
        AutomationElement sibling = ae;
        int cnt = -1;
        while (sibling != null)
        {
            sibling = TreeWalker.RawViewWalker.GetPreviousSibling(sibling);
            ++cnt;
        }
        if (cnt >= numButtons)
            cnt = 0; // nonsense value, but pass a valid one
        #endregion

        #region get command id
        TBBUTTON butInfo = new TBBUTTON();
        butInfo.idCommand = 1234;
        uint pid;
        GetWindowThreadProcessId((IntPtr)toolBarHandle, out pid);
        IntPtr process = OpenProcess(ProcessAccessFlags.VMOperation | ProcessAccessFlags.VMRead |
        ProcessAccessFlags.VMWrite | ProcessAccessFlags.QueryInformation, false, pid);

        IntPtr p = VirtualAllocEx(process, IntPtr.Zero, (uint)Marshal.SizeOf(typeof(TBBUTTON)), AllocationType.Commit
                                     , MemoryProtection.ReadWrite);

        int _res = SendMessage(toolBarHandle, TB_GETBUTTON, cnt, p.ToInt32());

        #region getresult
        int read;
        IntPtr ptr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(TBBUTTON)));
        Marshal.StructureToPtr(butInfo, ptr, true);
        bool __res = ReadProcessMemory(process, p, ptr, Marshal.SizeOf(typeof(TBBUTTON)), out read);
        System.Diagnostics.Debug.Assert(read == Marshal.SizeOf(typeof(TBBUTTON)));
        butInfo = (TBBUTTON)Marshal.PtrToStructure(ptr, typeof(TBBUTTON));
        #endregion

        int commandId = butInfo.idCommand;
        VirtualFreeEx(process, p, 0, FreeType.Release);

        #endregion

        //!define BST_UNCHECKED      0
        //!define BST_CHECKED        1
        //!define BST_INDETERMINATE  2
        //!define BST_PUSHED         4
        //!define BST_FOCUS          8

        #region get state
        res = SendMessage(toolBarHandle, TB_GETSTATE, commandId, 0);
        #endregion
    }
}
#endregion

編集: ここhttp://www.andreas-reiff.de/2011/06/c-speicher-anderen-prozess-befullen-lassen-checken-ob-ein-button-gedruckt/で、読み取り可能なコードと奇妙な説明があり、外国語..コードコメントは英語ですが。お役に立てば幸いです。また、ここの情報がなければこれを解決できなかったでしょう。一部のコントロールにウィンドウ ハンドルがないのはなぜですか? .

于 2011-06-15T18:08:21.220 に答える