diff options
| author | Rylan/wowmom98 <[email protected]> | 2017-05-18 21:48:40 -0400 |
|---|---|---|
| committer | Rylan/wowmom98 <[email protected]> | 2017-05-18 21:48:40 -0400 |
| commit | 41992360f1a07c7ff2a4627168ca7b2156b31dbc (patch) | |
| tree | bbb6b51e47c498aa5263fb7c92ffcbdbf354ef97 /ShiftOS.WinForms/Applications/TriPresent.cs | |
| parent | 5967c0fc3616fe14656f985e8871489ba03cfd10 (diff) | |
| download | shiftos_thereturn-41992360f1a07c7ff2a4627168ca7b2156b31dbc.tar.gz shiftos_thereturn-41992360f1a07c7ff2a4627168ca7b2156b31dbc.tar.bz2 shiftos_thereturn-41992360f1a07c7ff2a4627168ca7b2156b31dbc.zip | |
actually made tripresent an IShiftOSWindow
Diffstat (limited to 'ShiftOS.WinForms/Applications/TriPresent.cs')
| -rw-r--r-- | ShiftOS.WinForms/Applications/TriPresent.cs | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/ShiftOS.WinForms/Applications/TriPresent.cs b/ShiftOS.WinForms/Applications/TriPresent.cs index ab5db09..e16d4bd 100644 --- a/ShiftOS.WinForms/Applications/TriPresent.cs +++ b/ShiftOS.WinForms/Applications/TriPresent.cs @@ -13,10 +13,10 @@ using ShiftOS.Engine; namespace ShiftOS.WinForms.Applications { [WinOpen("tripresent")] - [AppscapeEntry("TriPresent", "Part of the trilogy of office applications for enhancement of your system. TriPresent is easliy the best presentation creator out there for ShiftOS.", 1024, 750, "file_skimmer", "Office")] + [AppscapeEntry("TriPresent", "Part of the trilogy of office applications for enhancement of your system. TriPresent is easliy the best presentation creator out there for ShiftOS.", 2048, 1500, "file_skimmer", "Office")] [DefaultTitle("TriPresent")] [Launcher("TriPresent", false, null, "Office")] - public partial class TriPresent : UserControl + public partial class TriPresent : UserControl, IShiftOSWindow { public TriPresent() { @@ -33,5 +33,25 @@ namespace ShiftOS.WinForms.Applications { AddItem.Hide(); } + + public void OnLoad() + { + + } + + public void OnSkinLoad() + { + + } + + public bool OnUnload() + { + return true; + } + + public void OnUpgrade() + { + + } } } |
