mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-07 08:45:06 +00:00
wip: update XML comments
This commit is contained in:
@@ -4,32 +4,37 @@ using PepperDash.Essentials.Core;
|
||||
|
||||
namespace PepperDash.Essentials.Core.PageManagers
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a SinglePageManager
|
||||
/// </summary>
|
||||
/// <summary>
|
||||
/// Represents a SinglePageManager
|
||||
/// </summary>
|
||||
public class SinglePageManager : PageManager
|
||||
{
|
||||
BasicTriList TriList;
|
||||
uint BackingPageJoin;
|
||||
|
||||
/// <summary>
|
||||
/// Constructor
|
||||
/// </summary>
|
||||
/// <param name="pageJoin">join for thepage</param>
|
||||
/// <param name="trilist">trilist</param>
|
||||
public SinglePageManager(uint pageJoin, BasicTriList trilist)
|
||||
{
|
||||
TriList = trilist;
|
||||
BackingPageJoin = pageJoin;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Show method
|
||||
/// </summary>
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Show method
|
||||
/// </summary>
|
||||
/// <inheritdoc />
|
||||
public override void Show()
|
||||
{
|
||||
TriList.BooleanInput[BackingPageJoin].BoolValue = true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Hide method
|
||||
/// </summary>
|
||||
/// <summary>
|
||||
/// Hide method
|
||||
/// </summary>
|
||||
public override void Hide()
|
||||
{
|
||||
TriList.BooleanInput[BackingPageJoin].BoolValue = false;
|
||||
|
||||
Reference in New Issue
Block a user