C# Class OKHOSTING.UI.Controller

This is the class that controlls all the UI. Inherit from Controller and create your app specific controllers. Each controller can have many methods Esta es la clase que controla toda la interfaz de usuario. Hereda de Controller y crea sus controladores especificos de aplicaciones. Cada controlador puede tener muchos metodos.

Mostra file Open project: okhosting/OKHOSTING.UI

Public Methods

Method Description
Finish ( ) : void

Will be execeuted once the controller has done it's workd. Use this to dispose objects and release memory Sera ejecutada una vez que el control ha hecho su trabajo. Use esto para deshechar objetos y liberar la memoria.

Refresh ( ) : void

Will be executed when the controller gets the focus once again, after gibing focus to another control Sera ejecutado cuando el control recibe la atencion una vez mas, despues de dar atencion a otro control.

Resize ( ) : void

Will be executed when the window is resized, allowing the controller to re-arrange the page, therefore making it "responsive" Se ejecutara cuando se cambia el tamaño de la ventana, permitiendo que el control vuelva a ordenar la pagina ya que es sencible.

Start ( ) : void

Will be executed when this controller "executes" at first Se produce cuando este controlador "ejecuta" un primer metodo.

Method Details

Finish() public method

Will be execeuted once the controller has done it's workd. Use this to dispose objects and release memory Sera ejecutada una vez que el control ha hecho su trabajo. Use esto para deshechar objetos y liberar la memoria.

public Finish ( ) : void
return void

Refresh() public method

Will be executed when the controller gets the focus once again, after gibing focus to another control Sera ejecutado cuando el control recibe la atencion una vez mas, despues de dar atencion a otro control.

public Refresh ( ) : void
return void

Resize() public method

Will be executed when the window is resized, allowing the controller to re-arrange the page, therefore making it "responsive" Se ejecutara cuando se cambia el tamaño de la ventana, permitiendo que el control vuelva a ordenar la pagina ya que es sencible.

public Resize ( ) : void
return void

Start() public method

Will be executed when this controller "executes" at first Se produce cuando este controlador "ejecuta" un primer metodo.

public Start ( ) : void
return void