mirror of
https://github.com/dnwSilver/tld.git
synced 2024-11-26 00:52:07 +00:00
18 lines
326 B
C#
18 lines
326 B
C#
|
using TUI.Engine.Nodes.Components;
|
||
|
|
||
|
namespace Widgets.Tests;
|
||
|
|
||
|
internal class TestComponent : ComponentBase
|
||
|
{
|
||
|
private string _content = "Lorem";
|
||
|
|
||
|
public void SetContent(string content)
|
||
|
{
|
||
|
_content = content;
|
||
|
}
|
||
|
|
||
|
public override Sketch DrawComponent()
|
||
|
{
|
||
|
return new Sketch(_content);
|
||
|
}
|
||
|
}
|