Class View.ControlStateChangedEventArgs

Definition

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

The class represents the information of the situation where the View's control state changes.

C#
Copy
public class ControlStateChangedEventArgs : EventArgs
Inheritance
View.ControlStateChangedEventArgs

Constructors

View Source

ControlStateChangedEventArgs(ControlState, ControlState)

Create an instance with mandatory fields.

Declaration
C#
Copy
public ControlStateChangedEventArgs(ControlState previousState, ControlState currentState)
Parameters
Type Name Description
ControlState previousState

The previous control state.

ControlState currentState

The current control state.

Properties

View Source

CurrentState

The current control state.

Declaration
C#
Copy
public ControlState CurrentState { get; }
Property Value
Type Description
ControlState
View Source

PreviousState

The previous control state.

Declaration
C#
Copy
public ControlState PreviousState { get; }
Property Value
Type Description
ControlState

Extension Methods