0

ms ui 自動化フレームワークを使用すると、InvokePattern を使用してボタンなどを呼び出すことができます。

InvokePattern invokePattern = ae.GetCurrentPattern(InvokePattern.Pattern) as InvokePattern;
invokePattern.Invoke();

しかし、自動化フレームワークを使用して右クリックなどをシミュレートする方法はありますか?

4

2 に答える 2

2

UIAutomation を使用してボタンを右クリックする直接的な方法は見つかりませんでしたが、これが私の回避策です。

[DllImport("user32.dll", EntryPoint = "SetCursorPos")]

[戻り値: MarshalAs(UnmanagedType.Bool)] private static extern bool SetCursorPos(int X, int Y);

    Rect BoundingRect = (Rect)aeButton.GetCurrentPropertyValue(AutomationElement.BoundingRectangleProperty);
      Mouse.MouseRightClick(BoundingRect);


    public void MouseRightClick(System.Windows.Rect BoundingRectangle)
    {
        int X = (int)BoundingRectangle.Left + ((int)(BoundingRectangle.Right - BoundingRectangle.Left) / 2);
        int Y = (int)BoundingRectangle.Top + ((int)(BoundingRectangle.Bottom - BoundingRectangle.Top) / 2);
         MouseClick(MOUSEEVENTF_RIGHTDOWN, MOUSEEVENTF_RIGHTUP,X, Y);
    }
    protected void MouseClick(uint ButtonDown, uint ButtonUp, int X, int Y)
    {
        try
        {
            SetCursorPos(X, Y);
            //Call the imported function with the cursor's current position
            mouse_event(ButtonDown | ButtonUp, X, Y, 0, 0);
        }
        catch (Exception e)
        {
            throw new InvalidOperationException("MouseClick", e);
        }
    }
于 2016-05-11T18:48:06.287 に答える
1

たぶんこれ:http://bytes.com/topic/c-sharp/answers/268148-c-equivalent-javas-robot-class

あなたが探しているものは何ですか?

于 2012-05-21T15:10:19.350 に答える