Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须对灯开关页面上的每个控件执行常见的验证任务,这样当用户与控件交互时,页面上的另一个控件就会被清除。我不知道如何在不调用的情况下迭代页面上的控件
this.FindControl("MyId")
对于每个单独的控件,然后在 ControlAvailable 上设置一个处理程序,然后获取控件并绑定到正确的事件,以便我可以在页面上的其他位置执行某些操作。
有没有办法循环所有控件并测试 TextBox 类型的存在,而不是寻找必须明确地按名称查找每个控件?
试试这个... http://social.msdn.microsoft.com/Forums/en-US/lightswitch/thread/65b146d3-2bee-44ed-a4e6-e54383627756/
干杯,
保罗