diff options
| author | Michael <[email protected]> | 2017-05-30 16:34:31 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-05-30 16:34:31 -0400 |
| commit | 0451b5d15703987b6be1160917ea31d36f6ee125 (patch) | |
| tree | c4ed2026acaff647cca8aa1f81beae4ddaff0ad0 /ShiftOS.WinForms/ShiftnetSites/ShiftSoft.cs | |
| parent | 0ca2fffe7a214fb5cc4c6482ca6fb8d1e4d2c4ea (diff) | |
| download | shiftos_thereturn-0451b5d15703987b6be1160917ea31d36f6ee125.tar.gz shiftos_thereturn-0451b5d15703987b6be1160917ea31d36f6ee125.tar.bz2 shiftos_thereturn-0451b5d15703987b6be1160917ea31d36f6ee125.zip | |
Slight Shiftnet mods, new default skin.
Diffstat (limited to 'ShiftOS.WinForms/ShiftnetSites/ShiftSoft.cs')
| -rw-r--r-- | ShiftOS.WinForms/ShiftnetSites/ShiftSoft.cs | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/ShiftnetSites/ShiftSoft.cs b/ShiftOS.WinForms/ShiftnetSites/ShiftSoft.cs new file mode 100644 index 0000000..18968cd --- /dev/null +++ b/ShiftOS.WinForms/ShiftnetSites/ShiftSoft.cs @@ -0,0 +1,38 @@ +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.ShiftnetSites +{ + [ShiftnetSite("shiftnet/shiftsoft", "ShiftSoft", "What do you want to shift today?")] + [ShiftnetFundamental] + public partial class ShiftSoft : UserControl, IShiftnetSite + { + public ShiftSoft() + { + InitializeComponent(); + } + + public event Action GoBack; + public event Action<string> GoToUrl; + + public void OnSkinLoad() + { + } + + public void OnUpgrade() + { + } + + public void Setup() + { + } + } +} |
