aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/StatusIcons/TestStatus.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-06-01 17:09:22 -0400
committerMichael <[email protected]>2017-06-01 17:09:22 -0400
commit03cf891c53cc648bb1ed4ea3d78755c1a440a713 (patch)
treebabcc9816885ce50b69fdbb03ab050b5f4200979 /ShiftOS.WinForms/StatusIcons/TestStatus.cs
parent324104eb0b8650969b2205404e3ad83401fb100e (diff)
downloadshiftos_thereturn-03cf891c53cc648bb1ed4ea3d78755c1a440a713.tar.gz
shiftos_thereturn-03cf891c53cc648bb1ed4ea3d78755c1a440a713.tar.bz2
shiftos_thereturn-03cf891c53cc648bb1ed4ea3d78755c1a440a713.zip
Icon Manager and various icon bugfixes.
Diffstat (limited to 'ShiftOS.WinForms/StatusIcons/TestStatus.cs')
-rw-r--r--ShiftOS.WinForms/StatusIcons/TestStatus.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/StatusIcons/TestStatus.cs b/ShiftOS.WinForms/StatusIcons/TestStatus.cs
new file mode 100644
index 0000000..90baafc
--- /dev/null
+++ b/ShiftOS.WinForms/StatusIcons/TestStatus.cs
@@ -0,0 +1,26 @@
+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.StatusIcons
+{
+ [DefaultIcon("iconShiftorium")]
+ public partial class TestStatus : UserControl, IStatusIcon
+ {
+ public TestStatus()
+ {
+ InitializeComponent();
+ }
+
+ public void Setup()
+ {
+ }
+ }
+}