通过代码给UI控制Click事件
我想做这样的事情:
<Grid Button.Click="grid_Button_Click">...</Grid>
但是在代码中。 我读了 http://msdn.microsoft.com/en-us/magazine/cc785480 .aspx,但我没有找到答案。
例如我有代码:
Object gr = new FrameworkElement();
gr.Click = += ( o, args ) => { /* ... */ };
怎么做?
已编辑
I want to do somethink like this:
<Grid Button.Click="grid_Button_Click">...</Grid>
but in code.
I read http://msdn.microsoft.com/en-us/magazine/cc785480.aspx, but I didn't found answer.
For example I have code:
Object gr = new FrameworkElement();
gr.Click = += ( o, args ) => { /* ... */ };
How to do it?
EDITED
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你当然可以这样做,尽管我会争论是否有必要。
无论哪种方式,都可以这样完成......
You can certainly do this, although I would debate the need.
Either way, it can be done like this...
要将处理程序添加到附加事件,请调用
Add*Handler
方法:Button.Click
不是附加事件,因此该方法不存在。To add a handler to an attached event, call the
Add*Handler
method:Button.Click
is not an attached event, so this method does not exist.