PrintPreviewDialog.OnClosing(CancelEventArgs) 方法

定义

引发 Closing 事件。

protected:
 override void OnClosing(System::ComponentModel::CancelEventArgs ^ e);
protected override void OnClosing (System.ComponentModel.CancelEventArgs e);
override this.OnClosing : System.ComponentModel.CancelEventArgs -> unit
Protected Overrides Sub OnClosing (e As CancelEventArgs)

参数

e
CancelEventArgs

为可取消的事件提供数据。

注解

此方法与此类无关。

方法 OnClosing 使预览无效,以便在重新打开对话框时重新生成预览。

引发事件时,将通过委托调用事件处理程序。 有关详细信息,请参阅 处理和引发事件

OnClosing 方法还允许派生类对事件进行处理而不必附加委托。 这是在派生类中处理事件的首选技术。

继承者说明

在派生类中重写 OnClosing(CancelEventArgs) 时,请务必调用基类的 OnClosing(CancelEventArgs) 方法,以便注册的委托接收 事件。

适用于