1

我正在使用 White 编写一些基于UIAutomation库的东西C#,我想知道如何获得元素的实际值?我的意思是来自的文本textboxlabel来自的button和来自的数值numeric up-down?AFAIK 也没有类似'GetValue'的方法。如何做到这一点?

4

2 回答 2

0

。文本

Button.Text 
Label.Text
Textbox.Text

等等等等

于 2013-07-25T06:54:39.050 回答
0
//for textbox
string your_needed_text1 = textBox1.text;
//for button
    string your_needed_text2 = Button1.text;
于 2013-07-25T06:46:17.767 回答