Silverlight 4 Dataform:如何以编程方式访问自动生成的字段?
我想在 DataForm 自动生成的表单中启用/禁用对复选框状态的控制。 因此,我将 AutoGenerateField 事件中的单击事件接收器连接到复选框。 在事件接收器代码中,我需要访问表单的其他字段以启用/禁用它们,但我在 DataForm 中没有找到字段或类似的集合。我如何访问这些字段?
谢谢!
I want to enable/disable controls on the status of a checkbox in a DataForm autogenerated form.
So I connected a click event receiver in the AutoGeneratingField event to a the checkbox.
In the event receiver code I need to access the other fields of the form to enable/disable them, but I did not find a Field or similar collection in DataForm. How can I access the fields?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议如果您需要做这样复杂的事情,您可以在数据表单中创建模板。不要为此使用自动生成。
I would suggest if you need to do complex stuff like this that you create the templates inside the dataform. Don't use autogenerated for this.