aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/ShiftOS/Desktop.cs
diff options
context:
space:
mode:
authorFloppyDiskDrive <[email protected]>2017-11-05 14:13:06 -0600
committerFloppyDiskDrive <[email protected]>2017-11-05 14:13:06 -0600
commit019da5b9ebf67b758a31dd05c4b17de66fa682f2 (patch)
tree9d2341a1e9ab8fe1216800265d70a18f5e7ac762 /ShiftOS.Main/ShiftOS/Desktop.cs
parent70ccdd214ed90d7d3ec3b5c1f9d0e4414fbe4987 (diff)
downloadshiftos-rewind-019da5b9ebf67b758a31dd05c4b17de66fa682f2.tar.gz
shiftos-rewind-019da5b9ebf67b758a31dd05c4b17de66fa682f2.tar.bz2
shiftos-rewind-019da5b9ebf67b758a31dd05c4b17de66fa682f2.zip
Began to add textpad, extra functionality to the infobox template
Diffstat (limited to 'ShiftOS.Main/ShiftOS/Desktop.cs')
-rw-r--r--ShiftOS.Main/ShiftOS/Desktop.cs7
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());
+ }
}
}