如何访问 Silverlight DataForm 中生成的文本框?
我有一个 DataForm 绑定到一个具有一些文本字段的简单对象。 DataForm 正确地自动为每个字符串字段生成一个文本框。现在,我需要从代码中将焦点设置到生成的 TextBox 元素之一。如何从 DataForm 中获取生成的元素,以便我可以将焦点设置到它?
I have a DataForm bound to a simple object that has some text fields. The DataForm correctly auto generates a TextBox for each of the string fields. From code I now need to set the focus to one of those generated TextBox elemetns. How do you get the generated element from the DataForm so I can set focus to it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
DataForm
的AutoGenerateField
事件。以下是如何获取名称为 ID 的属性的示例
Use
AutoGeneratingField
event ofDataForm
.Here is example how to get property with name ID