ListView.OnPagePropertiesChanging(PagePropertiesChangingEventArgs) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
引发 PagePropertiesChanging 事件。
protected:
virtual void OnPagePropertiesChanging(System::Web::UI::WebControls::PagePropertiesChangingEventArgs ^ e);
protected virtual void OnPagePropertiesChanging (System.Web.UI.WebControls.PagePropertiesChangingEventArgs e);
abstract member OnPagePropertiesChanging : System.Web.UI.WebControls.PagePropertiesChangingEventArgs -> unit
override this.OnPagePropertiesChanging : System.Web.UI.WebControls.PagePropertiesChangingEventArgs -> unit
Protected Overridable Sub OnPagePropertiesChanging (e As PagePropertiesChangingEventArgs)
参数
事件数据。
注解
当PagePropertiesChanging页面属性更改时,但在控件使用 SetPageProperties 方法设置新值之前ListView,将引发 事件。 这使你可以在发生此事件时执行自定义例程,例如清除 SelectedIndex 或 EditIndex 属性。
引发事件时,将通过委托调用事件处理程序。 有关详细信息,请参阅 处理和引发事件。
方法 OnPagePropertiesChanging 还使派生类无需附加委托即可处理 事件。 这是在派生类中处理事件的首选技术。
继承者说明
在派生类中重写 OnPagePropertiesChanging(PagePropertiesChangingEventArgs) 时,调用基类的 OnPagePropertiesChanging(PagePropertiesChangingEventArgs) 方法,以便注册的委托接收 事件。