Files
Terminal.Gui/UICatalog/Scenarios/BordersOnFrameView.cs
Tig c94f9165f4 Makes UI Catalog Scenarios use Theme and top-level color scheme (#2401)
* lots of clean up

* scenarios now get themes from uicatalog
2023-03-16 07:50:09 -06:00

25 lines
580 B
C#

using Terminal.Gui;
namespace UICatalog.Scenarios {
[ScenarioMetadata (Name: "Borders on FrameView", Description: "Demonstrate FrameView borders manipulation.")]
[ScenarioCategory ("Layout")]
[ScenarioCategory ("Borders")]
public class BordersOnFrameView : Scenario {
public override void Init ()
{
Application.Init ();
var boc = new BordersOnContainers (
$"{Application.QuitKey} to Quit - Scenario: {GetName ()}",
"FrameView",
new FrameView ());
Application.Run (boc);
Application.Shutdown ();
}
public override void Run ()
{
}
}
}