从UI元素中获取价值

时间:2013-07-25 06:34:24

标签: c# .net automation ui-automation white

我正在使用White在UIAutomation中基于C#库编写一些内容,我想知道如何获取元素的实际值?我的意思是textbox的文字,label的{​​{1}}和button的数值? AFAIK中没有类似numeric up-down的方法。怎么做到这一点?

2 个答案:

答案 0 :(得分:0)

//for textbox
string your_needed_text1 = textBox1.text;
//for button
    string your_needed_text2 = Button1.text;

答案 1 :(得分:0)

.Text

Button.Text 
Label.Text
Textbox.Text

Etc Etc