MSAA UI Automation get_accChildCount Incorrectly Returning 0 for Infragistics UltraTree in Winforms

后端 未结 2 493
余生分开走
余生分开走 2020-12-22 12:42

While working on automating an Infragistics UltraTree control in a C# Winforms application I found that the UltraTree implemented the AccessibleObject model (MSAA). I was ab

相关标签:
2条回答
  • 2020-12-22 13:01

    Kind of a crummy answer, but I ended up finding that by running under the CLR (flipping /clr on) the correct number of children is returned. So literally same exact code with the only difference being whether or not the /clr compiler switch is specified. I really don't want to run this code under the CLR though so this isn't an ideal solution for me, but it does technically answer my question.

    I will have to post another question asking why this might be happening :(

    0 讨论(0)
  • 2020-12-22 13:14

    I had the same problem for an infragistics control. If you are able to change the application under test you have 2 options, otherwise i think there is no solution and you are trapped.


    a) override the AutomationPeer implementation of your UltraTree, so just create your own CustomizedUltraTree. Here is a useful link on this topic Docu


    b) contact infragistics customer support, for me it was just some versioning issue and they were pretty quick and confident.

    0 讨论(0)
提交回复
热议问题