mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-19 03:26:18 +00:00
17 lines
319 B
C#
17 lines
319 B
C#
|
using System.Diagnostics;
|
||
|
|
||
|
namespace TUI.Pages;
|
||
|
|
||
|
public abstract class PageBase : IPage
|
||
|
{
|
||
|
public void Open()
|
||
|
{
|
||
|
Debugger.Log(0, "Event", $"Open page ${GetType().UnderlyingSystemType.Name}\n");
|
||
|
Bind();
|
||
|
Render();
|
||
|
}
|
||
|
|
||
|
public abstract void Render();
|
||
|
|
||
|
public abstract void Bind();
|
||
|
}
|