ListView.OnLayoutCreated(EventArgs) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
引发 LayoutCreated 事件。
protected:
virtual void OnLayoutCreated(EventArgs ^ e);
protected virtual void OnLayoutCreated (EventArgs e);
abstract member OnLayoutCreated : EventArgs -> unit
override this.OnLayoutCreated : EventArgs -> unit
Protected Overridable Sub OnLayoutCreated (e As EventArgs)
参数
事件数据。
注解
ListView在呈现控件之前,必须创建一个 ListViewItem 对象来充当控件的容器。 在 LayoutCreated 控件中创建 ListView 布局模板时,将引发 事件。 这使你可以在发生此事件时执行自定义例程,例如更改模板内控件的 LayoutTemplate 可见性。
引发事件时,将通过委托调用事件处理程序。 有关详细信息,请参阅 处理和引发事件。
方法 OnLayoutCreated 还允许派生类在不附加委托的情况下处理事件。 这是在派生类中处理事件的首选技术。
继承者说明
在派生类中重写 OnLayoutCreated(EventArgs) 时,调用基类的 OnLayoutCreated(EventArgs) 方法,以便注册的委托接收事件。