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

Removed the verbs from all extension methods that manipulate properties which makes the API more succinct and easier to read. Also added implicit conversion from string to Style. As a good OSS citizen, I've obsoleted the old methods with a warning for now, so this shouldn't break anyone using the old methods.
46 lines
1.5 KiB
C#
46 lines
1.5 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("Left")
|
|
.HeaderStyle("red"));
|
|
|
|
// Centered ASCII panel with text
|
|
AnsiConsole.Render(
|
|
new Panel(new Text("Centered\nCenter").Centered())
|
|
.Expand()
|
|
.AsciiBorder()
|
|
.Header("Center")
|
|
.HeaderStyle("green")
|
|
.HeaderAlignment(Justify.Center));
|
|
|
|
// Right adjusted, rounded panel with text
|
|
AnsiConsole.Render(
|
|
new Panel(new Text("Right adjusted\nRight").RightAligned())
|
|
.Expand()
|
|
.RoundedBorder()
|
|
.Header("Right")
|
|
.HeaderStyle("blue")
|
|
.HeaderAlignment(Justify.Right));
|
|
}
|
|
}
|
|
}
|