diff options
Diffstat (limited to 'ShiftOS.Main/ShiftOS/Desktop.cs')
| -rw-r--r-- | ShiftOS.Main/ShiftOS/Desktop.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ShiftOS.Main/ShiftOS/Desktop.cs b/ShiftOS.Main/ShiftOS/Desktop.cs index 06f1fc8..66392a7 100644 --- a/ShiftOS.Main/ShiftOS/Desktop.cs +++ b/ShiftOS.Main/ShiftOS/Desktop.cs @@ -8,6 +8,7 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using ShiftOS.Engine.WindowManager; +using ShiftOS.Engine; namespace ShiftOS.Main.ShiftOS { @@ -64,5 +65,11 @@ namespace ShiftOS.Main.ShiftOS ShiftWM.Init(trm, "Terminal", null, false, true); } + + private void textPadToolStripMenuItem_Click(object sender, EventArgs e) + { + var tp = new Apps.TextPad(); + ShiftWM.Init(tp, "TextPad", Properties.Resources.iconTextPad.ToIcon()); + } } } |
