I made a WPF app, and have made some automated tests using teststack.white. They have documentation on how they map controls in Windows to their framework but I don't see TextBlock there anywhere.
Thanks
I made a WPF app, and have made some automated tests using teststack.white. They have documentation on how they map controls in Windows to their framework but I don't see TextBlock there anywhere.
Thanks
Copyright © 2021 Jogjafile Inc.
Yes you are not mistaken, there's no mention of
TextBlock
there.The thing is the
TextBlock
is just a longerLabel
in WPF, as you can read here:So you can just get it as you would do with a
Label
:This is the XAML markup I used to test it: