diff options
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Helpers')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Helpers/KeyboardHelper.cs | 24 | ||||
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Helpers/LogsHelper.cs | 24 |
2 files changed, 0 insertions, 48 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Helpers/KeyboardHelper.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Helpers/KeyboardHelper.cs deleted file mode 100644 index 202f0378e..000000000 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Helpers/KeyboardHelper.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Tango.Touch.Keyboard; - -namespace Tango.PPC.Common.Helpers -{ - public static class KeyboardHelper - { - public static void OpenKeyboard(KeyboardActionKeyMode action, TouchKeyboardMode mode = TouchKeyboardMode.AlphaNumeric) - { - KeyboardView.Keyboard.ActionKeyMode = action; - KeyboardView.Keyboard.Mode = mode; - KeyboardView.Default.IsOpened = true; - } - - public static void CloseKeyboard() - { - KeyboardView.Default.IsOpened = false; - } - } -} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Helpers/LogsHelper.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Helpers/LogsHelper.cs deleted file mode 100644 index b7ab2d5b8..000000000 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Helpers/LogsHelper.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Tango.Logging; - -namespace Tango.PPC.Common.Helpers -{ - public static class LogsHelper - { - private static LogSafe _logSafe; - - public static void SetLogSafe(LogSafe logSafe) - { - _logSafe = logSafe; - } - - public static LogSafe GetLogSafe() - { - return _logSafe; - } - } -} |
