mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-22 18:02:16 +00:00
actually made tripresent an IShiftOSWindow
This commit is contained in:
parent
5967c0fc36
commit
41992360f1
1 changed files with 22 additions and 2 deletions
|
@ -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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue