C# Class OKHOSTING.UI.Net4.WebForms.Controls.ListPicker

It represents a control where the user can click and select a value from a list of options Representa un control donde el usuario puede dar clic y seleccionar un valor de una lista de opciones

Inheritance: System.Web.UI.WebControls.DropDownList, IListPicker
Show file Open project: okhosting/OKHOSTING.UI

Protected Properties

Property Type Description
_SelectedValue string

Private Properties

Property Type Description

Public Methods

Method Description
ListPicker ( ) : System

Initializes a new instance of the ListPicker class. Inicializa una nueva instancia de la clase ListPicker.

Protected Methods

Method Description
LoadPostData ( string postDataKey, System postCollection ) : bool

Does nothing since we manage state ourselves No hace nada ya que nosotros manejamos el estado.

OnPreRender ( EventArgs e ) : void

Ons the pre render. Ocurre antes de cambiar el nuevo valor.

RaiseValueChanged ( ) : void

Raises the value changed. Muestra el valor cambiado.

Method Details

ListPicker() public method

Initializes a new instance of the ListPicker class. Inicializa una nueva instancia de la clase ListPicker.

public ListPicker ( ) : System
return System

LoadPostData() protected method

Does nothing since we manage state ourselves No hace nada ya que nosotros manejamos el estado.

protected LoadPostData ( string postDataKey, System postCollection ) : bool
postDataKey string
postCollection System
return bool

OnPreRender() protected method

Ons the pre render. Ocurre antes de cambiar el nuevo valor.

protected OnPreRender ( EventArgs e ) : void
e System.EventArgs E.
return void

RaiseValueChanged() protected method

Raises the value changed. Muestra el valor cambiado.

protected RaiseValueChanged ( ) : void
return void

Property Details

_SelectedValue protected property

The selected value. El valor seleccionado.

protected string _SelectedValue
return string