mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 00:42:51 +08:00

* Renames Spectre.Cli to Spectre.Console.Cli. * Now uses Verify with Spectre.Console.Cli tests. * Removes some duplicate definitions. Closes #168
43 lines
1.4 KiB
C#
43 lines
1.4 KiB
C#
using Spectre.Console;
|
|
|
|
namespace PanelExample
|
|
{
|
|
public static class Program
|
|
{
|
|
public static void Main()
|
|
{
|
|
var content = new Markup(
|
|
"[underline]I[/] heard [underline on blue]you[/] like panels\n\n\n\n" +
|
|
"So I put a panel in a panel").Centered();
|
|
|
|
AnsiConsole.Render(
|
|
new Panel(
|
|
new Panel(content)
|
|
.Border(BoxBorder.Rounded)));
|
|
|
|
// Left adjusted panel with text
|
|
AnsiConsole.Render(
|
|
new Panel(new Text("Left adjusted\nLeft").LeftAligned())
|
|
.Expand()
|
|
.SquareBorder()
|
|
.Header("[red]Left[/]"));
|
|
|
|
// Centered ASCII panel with text
|
|
AnsiConsole.Render(
|
|
new Panel(new Text("Centered\nCenter").Centered())
|
|
.Expand()
|
|
.AsciiBorder()
|
|
.Header("[green]Center[/]")
|
|
.HeaderAlignment(Justify.Center));
|
|
|
|
// Right adjusted, rounded panel with text
|
|
AnsiConsole.Render(
|
|
new Panel(new Text("Right adjusted\nRight").RightAligned())
|
|
.Expand()
|
|
.RoundedBorder()
|
|
.Header("[blue]Right[/]")
|
|
.HeaderAlignment(Justify.Right));
|
|
}
|
|
}
|
|
}
|