Class FocusManager.FocusChangedEventArgs

Definition

Namespace:
Tizen.NUI
Assembly:
Tizen.NUI.dll
API Level:
3

Event arguments that passed via the FocusChanged signal.

C#
Copy
public class FocusChangedEventArgs : EventArgs
Inheritance
System.Object
FocusManager.FocusChangedEventArgs

Properties

View Source

Current

The current focused view after focus changed.

Declaration
C#
Copy
public View Current { get; set; }
Property Value
Type Description
View
API Level: 10
View Source

CurrentView

The current focus view.

Declaration
C#
Copy
[Obsolete("Please do not use! This will be deprecated! Please use Previous instead!")] public View CurrentView { get; set; }
Property Value
Type Description
View
API Level: 3
View Source

NextView

The next focus view.

Declaration
C#
Copy
[Obsolete("Please do not use! This will be deprecated! Please use Current instead!")] public View NextView { get; set; }
Property Value
Type Description
View
API Level: 3
View Source

Previous

The previously focused view.

Declaration
C#
Copy
public View Previous { get; set; }
Property Value
Type Description
View
API Level: 10