Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8373437
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T14:40:35+00:00 2026-06-09T14:40:35+00:00

I have a Metro app. I am developing a automation client. I want to

  • 0

I have a Metro app. I am developing a automation client. I want to List All Element of the Metro App.

  1. I am Launching the metro App through IApplicationActivationManager
  2. I am getting the focussed element

    HRESULT hr = automation->GetRootElement(&pRoot);
    hr = automation->GetFocusedElement(&pFound);

Now I wanted to List All the Control like button, Picture element and Other

I am Using FindAll of automation Interface to get element ,

    // Create a property condition for the button control type.   
    VARIANT varProp;  
    varProp.vt = VT_I4;  
    varProp.lVal = UIA_ButtonControlTypeId;  
    hr = automation->CreatePropertyCondition(UIA_ControlTypePropertyId, varProp, &pButtonCondition);   

    if (pButtonCondition == NULL)
        goto cleanup;

    // Create a property condition for the enabled property.
    varProp.vt = VT_BOOL;
    varProp.boolVal = VARIANT_TRUE;
    hr = automation->CreatePropertyCondition(UIA_IsEnabledPropertyId, varProp, &pEnabledCondition);
    if (pEnabledCondition == NULL)
        goto cleanup;


    // Combine the conditions.
    hr = automation->CreateAndCondition(pButtonCondition, pEnabledCondition, &pCombinedCondition);
    if (pCombinedCondition == NULL)
        goto cleanup;

    // Find the matching elements. Note that if the scope is changed to TreeScope_Descendants, 
    // system buttons on the caption bar will be found as well.
    hr = pParent->FindAll(TreeScope_Children, pCombinedCondition, &pFound);

This Only List Button there in the metro app.
I wanted to List all the control on the Window.
Please help on this. How Can Get All Element of a Metro App?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T14:40:36+00:00Added an answer on June 9, 2026 at 2:40 pm

    I find it out ……If we use true condition we can find all element on UI

    IUIAutomationCondition* pCombinedCondition = NULL;
     hr = automation->CreateTrueCondition(&pCombinedCondition);
    if (pCombinedCondition == NULL)
        goto cleanup;
    // Find the matching elements. Note that if the scope is changed to TreeScope_Descendants, 
    // system buttons on the caption bar will be found as well.
    hr = pParent->FindAll(TreeScope_Children,pCombinedCondition , &pFound);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a metro app and want to bind a <TextBlock> element to a
I am developing UI Automation client(c++) for metro app. I am able to get
Yesterday I have started developing my first Metro style App using JavaScript. I've used
I have a multi-xaml metro app. I want to switch between xaml by button
I have a StackPanel in my WinRT C# Metro app that I want to
I'm developing a Metro-style app (for Windows 8) using C# and XAML. I have
I have a simple metro app contains a button, a label and a drop
I want to use Boost C++ in a Windows 8 Metro app and I
I am developing a metro app using JavaScript and am trying to display two
I have a metro style app created from a Visual Studio 11 template. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.