diff options
author | Ian C <ianc@noddybox.co.uk> | 2012-04-27 16:24:53 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2012-04-27 16:24:53 +0000 |
commit | 0191a758903099bdd39dddb2ef456333eee04fe3 (patch) | |
tree | 31e8285ef1c2707e3f2df26a12a4187146e8f007 /src/Noddybox.Emulation.Keyboard.Schema | |
parent | 3b85ea1b69b1747caf944af6ce301c165e3b56cb (diff) |
Added basic logic of UI. Still to add key overlay to image control.
Diffstat (limited to 'src/Noddybox.Emulation.Keyboard.Schema')
-rw-r--r-- | src/Noddybox.Emulation.Keyboard.Schema/KeyboardKey.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Noddybox.Emulation.Keyboard.Schema/KeyboardKey.cs b/src/Noddybox.Emulation.Keyboard.Schema/KeyboardKey.cs index 54f2efe..6dac9b1 100644 --- a/src/Noddybox.Emulation.Keyboard.Schema/KeyboardKey.cs +++ b/src/Noddybox.Emulation.Keyboard.Schema/KeyboardKey.cs @@ -108,5 +108,14 @@ namespace Noddybox.Emulation.Keyboard.Schema }
#endregion
+
+ #region Object overrides
+
+ public override string ToString()
+ {
+ return KeySymbol;
+ }
+
+ #endregion
}
}
|