Class RemoteControlKeyEventArgs
Arguments for the event that is raised when a remote control key is pressed or released.
Inheritance
System.Object
System.EventArgs
RemoteControlKeyEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Tizen.TV.UIControls.Forms
Assembly: Tizen.TV.UIControls.Forms.dll
Syntax
public class RemoteControlKeyEventArgs : EventArgs
Constructors
RemoteControlKeyEventArgs(VisualElement, RemoteControlKeyTypes, RemoteControlKeyNames, String)
Constructs a new RemoteControlKeyEventArgs object for a key type, key name, and platform key name.
Declaration
public RemoteControlKeyEventArgs(VisualElement sender, RemoteControlKeyTypes keyType, RemoteControlKeyNames keyName, string platformKeyName)
Parameters
Type | Name | Description |
---|---|---|
Xamarin.Forms.VisualElement | sender | The VisualElement that sends the event. |
RemoteControlKeyTypes | keyType | The type of a remote control key. |
RemoteControlKeyNames | keyName | The name of a remote control key. |
System.String | platformKeyName | The name of a platform key name. |
Properties
Handled
Gets or sets a value that indicates whether the remote control key event has already been handled.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
KeyName
The name of a remote control key.
Declaration
public RemoteControlKeyNames KeyName { get; }
Property Value
Type | Description |
---|---|
RemoteControlKeyNames |
KeyType
The type of a remote control key.
Declaration
public RemoteControlKeyTypes KeyType { get; }
Property Value
Type | Description |
---|---|
RemoteControlKeyTypes |
PlatformKeyName
The name of a platform key name.
Declaration
public string PlatformKeyName { get; }
Property Value
Type | Description |
---|---|
System.String |
Sender
The sender of a remote control key.
Declaration
public VisualElement Sender { get; }
Property Value
Type | Description |
---|---|
Xamarin.Forms.VisualElement |