Class EFLComponentBasedApplication
Definition
- Assembly:
- Tizen.Applications.ComponentBased.Default.dll
- API Level:
- 6
The basic EFL component-based application class.
public class EFLComponentBasedApplication : ComponentBasedApplication, IDisposable
- Inheritance
- Implements
Constructors
View SourceEFLComponentBasedApplication(IDictionary<Type, String>)
Initializes the ComponentBasedApplication class.
Declaration
public EFLComponentBasedApplication(IDictionary<Type, string> typeInfo)
Parameters
Type | Name | Description |
---|---|---|
IDictionary<Type, String> | typeInfo | The component type information. The key should be a class type of BaseComponent subclass. The value should be a component id which is declared in tizen-manifest.xml. |
API Level: 6
Methods
View SourceOnExit()
This method will be called to exit main-loop
Declaration
protected override void OnExit()
Overrides
API Level: 6
View SourceOnFinished()
This method will be called after exiting main-loop
Declaration
protected override void OnFinished()
Overrides
API Level: 6
View SourceOnInit(String[])
This method will be called before running main-loop
Declaration
protected override void OnInit(string[] args)
Parameters
Type | Name | Description |
---|---|---|
String[] | args |
Overrides
API Level: 6
View SourceOnRun()
This method will be called to start main-loop
Declaration
protected override void OnRun()