silverlight 3 中的路由事件?
我有一个控件,在控件内,在控件内。
就像这样..
QuizMaster ->问题->答案-> RadioButton
当选中其中一个答案时,我希望运行 Quizmaster 中名为 AskNextQuestion() 的函数。
我该怎么做?
I have a Control, within a control, within a control.
Like so..
QuizMaster -> Question -> Answers -> RadioButton
When one of the answers is checked I want the function in Quizmaster called AskNextQuestion() to run.
How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在嵌套控件中创建一个事件,并让您的
QuizMaster
订阅该事件。在您的
Answers
中添加以下内容:当您在其处理程序和
QuizMaster
中选择RadioButton
时触发此事件订阅此静态事件:
You would create an event in your nested control, and have your
QuizMaster
subscribe to that event.In your
Answers
add this:and Fire this event when you select a
RadioButton
in its handlerand in your
QuizMaster
Subscribe to this static event: