I'm adding a validation module to my application which will guide the user to the inputs that need attention. I would like to go through these controls in the same order that they were added to the Visual Tree. The Tab Index for each control is set to Int Max, which means just go in order of the Visual Tree.
My validation module just gets a bunch of controls to validate. It needs to order them from top to bottom so the user can go sequentially through the form. I would like to preserve the original tabbing behavior. I just need to know the visual tree order of the controls in my list so I can sort them properly.