Class FocusManager.FocusChangedEventArgs
Definition
- Assembly:
- Tizen.NUI.dll
Event arguments that passed via the FocusChanged signal.
public class FocusManager.FocusChangedEventArgs : EventArgs
- Inheritance
-
objectSystem.EventArgsFocusManager.FocusChangedEventArgs
Properties
View SourceCurrent
The current focused view after focus changed.
Declaration
public View Current { get; set; }
Property Value
Type | Description |
---|---|
View |
CurrentView
The current focus view.
Declaration
[Obsolete("Please do not use! This will be deprecated! Please use Previous instead!")]
public View CurrentView { get; set; }
Property Value
Type | Description |
---|---|
View |
NextView
The next focus view.
Declaration
[Obsolete("Please do not use! This will be deprecated! Please use Current instead!")]
public View NextView { get; set; }
Property Value
Type | Description |
---|---|
View |
Previous
The previously focused view.
Declaration
public View Previous { get; set; }
Property Value
Type | Description |
---|---|
View |