diff options
| author | Michael <[email protected]> | 2017-04-22 18:57:05 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-04-22 18:57:05 -0400 |
| commit | e65a1b5e93e8f533d44542354b150ac660cf7239 (patch) | |
| tree | 5e6bbf54fb83ae6ef55ac1c099f432e132e33a2d /ShiftOS.WinForms/DesktopWidgets/CommandRunner.cs | |
| parent | 40fc14a237f0bbe3e5237e5ce0806f46ecf0f56e (diff) | |
| download | shiftos_thereturn-e65a1b5e93e8f533d44542354b150ac660cf7239.tar.gz shiftos_thereturn-e65a1b5e93e8f533d44542354b150ac660cf7239.tar.bz2 shiftos_thereturn-e65a1b5e93e8f533d44542354b150ac660cf7239.zip | |
BST: Add "CommandRunner" Widget
Diffstat (limited to 'ShiftOS.WinForms/DesktopWidgets/CommandRunner.cs')
| -rw-r--r-- | ShiftOS.WinForms/DesktopWidgets/CommandRunner.cs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/DesktopWidgets/CommandRunner.cs b/ShiftOS.WinForms/DesktopWidgets/CommandRunner.cs new file mode 100644 index 0000000..29f20ed --- /dev/null +++ b/ShiftOS.WinForms/DesktopWidgets/CommandRunner.cs @@ -0,0 +1,37 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using ShiftOS.Engine; +using ShiftOS.WinForms.Tools; + +namespace ShiftOS.WinForms.DesktopWidgets +{ + [DesktopWidget("Terminal Widget", "Run commands in a miniature Terminal.")] + public partial class CommandRunner : UserControl, IDesktopWidget + { + public CommandRunner() + { + InitializeComponent(); + } + + public void OnSkinLoad() + { + ControlManager.SetupControls(this); + } + + public void OnUpgrade() + { + + } + + public void Setup() + { + } + } +} |
