在 WinForm DataRepeater C# Power Pack 中处理按钮单击
我想处理DataRepeater中winform按钮的点击,我该怎么做?所有按钮都放置在 DataRepeater 中
非常感谢
i want to handle winform button click in the DataRepeater, how can i do it? all button are placed in a DataRepeater
Thank you very much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Visual Studio Designer 中,双击该按钮,然后您将获得空的事件处理程序方法。
在那里添加代码。
您可以通过 CurrentItem 或 CurrentItemIndex 获取当前项目,以获取单击了哪个按钮...
In visual studio designer, double click the button then you get the empty eventhandler method.
Add code there.
You can get the current item via CurrentItem or CurrentItemIndex to get which button was clicked...