C# 클래스 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.

파일 보기 프로젝트 열기: okhosting/OKHOSTING.UI

공개 메소드들

메소드 설명
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.

메소드 상세

Finish() 공개 메소드

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
리턴 void

Refresh() 공개 메소드

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
리턴 void

Resize() 공개 메소드

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
리턴 void

Start() 공개 메소드

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

public Start ( ) : void
리턴 void