aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/Notifications.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-02-24 21:16:45 -0500
committerMichael <[email protected]>2017-02-24 21:16:45 -0500
commitbdd8e61600ce849d36e1b4932a01540f2575b738 (patch)
tree472b9473c6561d5f0929bc0ffd4c772a10f3cb06 /ShiftOS.WinForms/Applications/Notifications.cs
parent1e355ca5d1482fbc26866056c054fe5e14b15946 (diff)
downloadshiftos_thereturn-bdd8e61600ce849d36e1b4932a01540f2575b738.tar.gz
shiftos_thereturn-bdd8e61600ce849d36e1b4932a01540f2575b738.tar.bz2
shiftos_thereturn-bdd8e61600ce849d36e1b4932a01540f2575b738.zip
Notification frontend. Sorta.
Diffstat (limited to 'ShiftOS.WinForms/Applications/Notifications.cs')
-rw-r--r--ShiftOS.WinForms/Applications/Notifications.cs40
1 files changed, 40 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Applications/Notifications.cs b/ShiftOS.WinForms/Applications/Notifications.cs
new file mode 100644
index 0000000..9e1b36b
--- /dev/null
+++ b/ShiftOS.WinForms/Applications/Notifications.cs
@@ -0,0 +1,40 @@
+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;
+
+namespace ShiftOS.WinForms.Applications
+{
+ [DefaultTitle("Notifications")]
+ [Launcher("Notifications", true, "al_notifications", "Utilities")]
+ public partial class Notifications : UserControl, IShiftOSWindow
+ {
+ public Notifications()
+ {
+ InitializeComponent();
+ }
+
+ public void OnLoad()
+ {
+ }
+
+ public void OnSkinLoad()
+ {
+ }
+
+ public bool OnUnload()
+ {
+ return true;
+ }
+
+ public void OnUpgrade()
+ {
+ }
+ }
+}