QuestionEventHandler 委托
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示将处理 CancelRowEdit 的 RowDirtyStateNeeded 事件或 DataGridView 事件的方法。
public delegate void QuestionEventHandler(System::Object ^ sender, QuestionEventArgs ^ e);
public delegate void QuestionEventHandler(object sender, QuestionEventArgs e);
public delegate void QuestionEventHandler(object? sender, QuestionEventArgs e);
type QuestionEventHandler = delegate of obj * QuestionEventArgs -> unit
Public Delegate Sub QuestionEventHandler(sender As Object, e As QuestionEventArgs)
参数
- sender
- Object
事件源。
包含事件数据的 QuestionEventArgs。
注解
创建 QuestionEventHandler 委托时,需要标识将处理该事件的方法。 若要将事件与事件处理程序关联,请将该委托的一个实例添加到事件中。 除非移除了该委托,否则每当发生该事件时就会调用事件处理程序。 有关事件处理程序委托的详细信息,请参阅 处理和引发事件。
在 控件中 DataGridView 实现虚拟模式时使用此委托。
扩展方法
GetMethodInfo(Delegate) |
获取指示指定委托表示的方法的对象。 |