Class NUIFrameComponent

Definition

Namespace:
Tizen.NUI
Assembly:
Tizen.NUI.dll

The class for showing UI module

C#
Copy
public class NUIFrameComponent : FrameComponent
Inheritance
NUIFrameComponent

Properties

View Source

Window

Declaration
C#
Copy
public Window Window { get; set; }
Property Value
Type Description
Window

Methods

View Source

CreateWindowInfo()

Overrides this method to create window. It will be called before OnCreate method.

Declaration
C#
Copy
public override IWindowInfo CreateWindowInfo()
Returns
Type Description
IWindowInfo

Window object to use

Overrides
View Source

OnCreate()

Overrides this method to handle behavior when the component is launched.

Declaration
C#
Copy
public override bool OnCreate()
Returns
Type Description
Boolean

True if a service component is successfully created

Overrides
View Source

OnDestroy()

Overrides this method if want to handle behavior when the component is destroyed.

Declaration
C#
Copy
public override void OnDestroy()
Overrides
View Source

OnPause()

Overrides this method if you want to handle the behavior when the component is paused.

Declaration
C#
Copy
public override void OnPause()
Overrides
View Source

OnResume()

Overrides this method if you want to handle the behavior when the component is resumed.

Declaration
C#
Copy
public override void OnResume()
Overrides
View Source

OnStart(AppControl, Boolean)

Overrides this method if want to handle behavior when the component receives the appcontrol message.

Declaration
C#
Copy
public override void OnStart(AppControl appControl, bool restarted)
Parameters
Type Name Description
AppControl appControl

appcontrol object

Boolean restarted

True if it was restarted

Overrides
View Source

OnStop()

Overrides this method if you want to handle the behavior when the component is stopped.

Declaration
C#
Copy
public override void OnStop()
Overrides

Extension Methods