aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/TriWrite.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-05-01 13:37:48 -0600
committerAShifter <[email protected]>2017-05-01 13:37:48 -0600
commitd30eb35c9755cf430efa124a9a2576ab6b74c8da (patch)
treebbf4c161697b390a96af01a36277c8dc4e52e1a0 /ShiftOS.WinForms/Applications/TriWrite.cs
parentb842c73b04fb92d9ecaf3d8fcc2df6157c2e8652 (diff)
parent7532df70757ecbcaf735a5fc50eee282f555741a (diff)
downloadshiftos_thereturn-d30eb35c9755cf430efa124a9a2576ab6b74c8da.tar.gz
shiftos_thereturn-d30eb35c9755cf430efa124a9a2576ab6b74c8da.tar.bz2
shiftos_thereturn-d30eb35c9755cf430efa124a9a2576ab6b74c8da.zip
Merge remote-tracking branch 'refs/remotes/shiftos-game/master'
Diffstat (limited to 'ShiftOS.WinForms/Applications/TriWrite.cs')
-rw-r--r--ShiftOS.WinForms/Applications/TriWrite.cs42
1 files changed, 42 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Applications/TriWrite.cs b/ShiftOS.WinForms/Applications/TriWrite.cs
new file mode 100644
index 0000000..90add8d
--- /dev/null
+++ b/ShiftOS.WinForms/Applications/TriWrite.cs
@@ -0,0 +1,42 @@
+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 static ShiftOS.Objects.ShiftFS.Utils;
+using Newtonsoft.Json;
+
+namespace ShiftOS.WinForms.Applications
+{
+ [WinOpen("triwrite")]
+ [AppscapeEntry("TriWrite", "Part of the trilogy of office applications for enhancement of your system. TriWrite is easliy the best text editor out there for ShiftOS.", 1024, 750, null, "Office")]
+ [DefaultTitle("TriWrite")]
+ [Launcher("TriWrite", false, null, "Office")]
+ public partial class TriWrite : UserControl, IShiftOSWindow
+ {
+
+ public void OnLoad()
+ {
+
+ }
+
+ public void OnSkinLoad()
+ {
+ }
+
+ public bool OnUnload()
+ {
+ return true;
+ }
+
+ public void OnUpgrade()
+ {
+ }
+
+ }
+} \ No newline at end of file