mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 17:35:33 +00:00
2004-02-16 Mike Kestner <mkestner@ximian.com>
* gdk/EventKey.cs : add a Key prop to return casted KeyVals. svn path=/trunk/gtk-sharp/; revision=23152
This commit is contained in:
parent
49ba707675
commit
320c4f713d
|
@ -1,3 +1,7 @@
|
|||
2004-02-16 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* gdk/EventKey.cs : add a Key prop to return casted KeyVals.
|
||||
|
||||
2004-02-16 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* gdk/Gdk.metadata : hide EventKey
|
||||
|
|
|
@ -40,6 +40,12 @@ namespace Gdk {
|
|||
}
|
||||
}
|
||||
|
||||
public Key Key {
|
||||
get {
|
||||
return (Key) gtksharp_gdk_event_key_get_keyval (Handle);
|
||||
}
|
||||
}
|
||||
|
||||
public uint KeyValue {
|
||||
get {
|
||||
return gtksharp_gdk_event_key_get_keyval (Handle);
|
||||
|
|
Loading…
Reference in a new issue