actually made tripresent an IShiftOSWindow

This commit is contained in:
Rylan/wowmom98 2017-05-18 21:48:40 -04:00
parent 5967c0fc36
commit 41992360f1

View file

@ -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()
{
}
}
}