Enum UIGadgetLifecycleState
Definition
- Namespace:
- Tizen.Applications
- Assembly:
- Tizen.Applications.UIGadget.dll
Enumeration for the lifecycle state of the UIGadget.
public enum UIGadgetLifecycleState
Fields
| Name | Description |
|---|---|
| Created | The created state. This state is set when the UIGadget is created. The 'OnCreate()' method of the UIGadget is called. |
| Destroyed | The destroyed state. This state is set when the UIGadget is destroyed. The 'OnDestroy()' method of the UIGadget is called. |
| Initialized | The initialized state. This state is set when the UIGadget is initialized. The constructor of the UIGadget is called. |
| Paused | The paused state. This state is set when the UIGadget is paused. The 'OnPause()' method of the UIGadget is called. |
| PreCreated | The pre-created state. This state is set when the UIGadget is pre-created. The 'OnPreCreate()' method of the UIGadget is called. |
| Resumed | The resumed state. This state is set when the UIGadget is resumed. The 'OnResume()' method of the UIGadget is called. |