.NET Automation ControlType.Document:如何操作文本?
如何使用 System.Windows.Automation
将文本设置到 ControlType.Document
元素中?
ValuePattern 不适用于文档 ControlType,并且 TextPattern 不允许设置新值。
这不起作用:
automationElement.GetCurrentPattern(ValuePattern.Pattern) as ValuePattern)
.setValue(value);
How can I set text into a ControlType.Document
element using the System.Windows.Automation
?
The ValuePattern is not available for Document ControlType and TextPattern doesn't allow setting of new values.
This does not work:
automationElement.GetCurrentPattern(ValuePattern.Pattern) as ValuePattern)
.setValue(value);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用这个方法发现了一个丑陋的方法:
I found an ugly way with this method: