Class FrameComponent
Definition
- Namespace:
- Tizen.Applications.ComponentBased.Common
- Assembly:
- Tizen.Applications.ComponentBased.dll
- API Level:
- 6
The class for showing UI module
C#Copypublic abstract class FrameComponent : BaseComponent
- Inheritance
- Derived
-
Tizen.NUI.NUIFrameComponent
Properties
Declaration
C#Copypublic DisplayStatus DisplayStatus { get; }
Property Value
Type | Description |
---|---|
DisplayStatus |
Exceptions
Type | Condition |
---|---|
InvalidOperationException | Thrown when component type is already added to the component. |
API Level: 6
Methods
View Source
CreateWindowInfo()
Overrides this method to create window. It will be called before OnCreate method.
Declaration
C#Copypublic abstract IWindowInfo CreateWindowInfo()
Returns
Type | Description |
---|---|
IWindowInfo | Window object to use |
API Level: 6
Declaration
C#Copypublic abstract bool OnCreate()
Returns
Type | Description |
---|---|
System.Boolean | True if a service component is successfully created |
API Level: 6
View Source
OnDestroy()
Overrides this method if want to handle behavior when the component is destroyed.
Declaration
C#Copypublic virtual void OnDestroy()
API Level: 6
View Source
OnPause()
Overrides this method if you want to handle the behavior when the component is paused.
Declaration
C#Copypublic virtual void OnPause()
API Level: 6
View Source
OnResume()
Overrides this method if you want to handle the behavior when the component is resumed.
Declaration
C#Copypublic virtual void OnResume()
API Level: 6
View Source
OnStart(AppControl, Boolean)
Overrides this method if want to handle behavior when the component receives the appcontrol message.
Declaration
C#Copypublic virtual void OnStart(AppControl appControl, bool restarted)
Parameters
Type | Name | Description |
---|---|---|
AppControl | appControl | appcontrol object |
System.Boolean | restarted | True if it was restarted |
API Level: 6
View Source
OnStop()
Overrides this method if you want to handle the behavior when the component is stopped.
Declaration
C#Copypublic virtual void OnStop()