TypeValidationEventHandler 委托
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示将处理 TypeValidationCompleted 控件的 MaskedTextBox 事件的方法。
public delegate void TypeValidationEventHandler(System::Object ^ sender, TypeValidationEventArgs ^ e);
public delegate void TypeValidationEventHandler(object sender, TypeValidationEventArgs e);
public delegate void TypeValidationEventHandler(object? sender, TypeValidationEventArgs e);
type TypeValidationEventHandler = delegate of obj * TypeValidationEventArgs -> unit
Public Delegate Sub TypeValidationEventHandler(sender As Object, e As TypeValidationEventArgs)
参数
- sender
- Object
事件源。
包含事件数据的 TypeValidationEventArgs。
注解
类TypeValidationCompleted的事件MaskedTextBox是一个可选事件,仅当 属性显式设置为 以外的null
类型时,ValidatingType才会引发该事件。
通常,实现 事件的处理程序 TypeValidationCompleted 以执行特定于掩码和特定于类型的验证处理。 相比之下,常规验证通常在基类中定义的标准 Validating 事件中 Control 执行。
扩展方法
GetMethodInfo(Delegate) |
获取指示指定委托表示的方法的对象。 |