Class EFLComponentBasedApplication

Definition

Namespace:
Tizen.Applications.ComponentBased.Default
Assembly:
Tizen.Applications.ComponentBased.Default.dll

The basic EFL component-based application class.

C#
Copy
public class EFLComponentBasedApplication : ComponentBasedApplication, IDisposable
Inheritance
object
EFLComponentBasedApplication
Implements
System.IDisposable

Constructors

View Source

EFLComponentBasedApplication(IDictionary<Type, string>)

Initializes the ComponentBasedApplication class.

Declaration
C#
Copy
public EFLComponentBasedApplication(IDictionary<Type, string> typeInfo)
Parameters
Type Name Description
System.Collections.Generic.IDictionary<TKey, TValue><System.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.

Methods

View Source

OnExit()

This method will be called to exit main-loop

Declaration
C#
Copy
protected override void OnExit()
Overrides
View Source

OnFinished()

This method will be called after exiting main-loop

Declaration
C#
Copy
protected override void OnFinished()
Overrides
View Source

OnInit(string[])

This method will be called before running main-loop

Declaration
C#
Copy
protected override void OnInit(string[] args)
Parameters
Type Name Description
string[] args
Overrides
View Source

OnRun()

This method will be called to start main-loop

Declaration
C#
Copy
protected override void OnRun()
Overrides

Implements

System.IDisposable