C# Class Spring.Web.UI.Controls.Panel

Inheritance: System.Web.UI.WebControls.Panel, ISupportsWebDependencyInjection
Afficher le fichier Open project: spring-projects/spring-net Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
RenderBeginTag ( System.Web.UI.HtmlTextWriter writer ) : void

Renders the HTML opening tag of the control to the specified writer.

RenderEndTag ( System.Web.UI.HtmlTextWriter writer ) : void

Renders the HTML closing tag of the control to the specified writer.

Méthodes protégées

Méthode Description
AddedControl ( Control control, int index ) : void

Injects dependencies into control before adding it.

CreateControlCollection ( ) : System.Web.UI.ControlCollection

Overridden to automatically aquire a reference to root application context to use for DI.

OnPreInitRecursive ( EventArgs e ) : void

This method is invoked right before InitRecursive() is called for this Panel and ensures, that dependencies get injected on child controls before their Init event is raised.

OnPreRender ( EventArgs e ) : void

Overridden to set Control.Visible according to VisibleIf if necessary.

Method Details

AddedControl() protected méthode

Injects dependencies into control before adding it.
protected AddedControl ( Control control, int index ) : void
control System.Web.UI.Control
index int
Résultat void

CreateControlCollection() protected méthode

Overridden to automatically aquire a reference to root application context to use for DI.
protected CreateControlCollection ( ) : System.Web.UI.ControlCollection
Résultat System.Web.UI.ControlCollection

OnPreInitRecursive() protected méthode

This method is invoked right before InitRecursive() is called for this Panel and ensures, that dependencies get injected on child controls before their Init event is raised.
protected OnPreInitRecursive ( EventArgs e ) : void
e System.EventArgs
Résultat void

OnPreRender() protected méthode

Overridden to set Control.Visible according to VisibleIf if necessary.
protected OnPreRender ( EventArgs e ) : void
e System.EventArgs
Résultat void

RenderBeginTag() public méthode

Renders the HTML opening tag of the control to the specified writer.
public RenderBeginTag ( System.Web.UI.HtmlTextWriter writer ) : void
writer System.Web.UI.HtmlTextWriter An that represents the output stream to render HTML content on the client.
Résultat void

RenderEndTag() public méthode

Renders the HTML closing tag of the control to the specified writer.
public RenderEndTag ( System.Web.UI.HtmlTextWriter writer ) : void
writer System.Web.UI.HtmlTextWriter An that represents the output stream to render HTML content on the client.
Résultat void