Files
Terminal.Gui/UICatalog/Scenarios/ShadowStyles.cs
2024-08-29 15:47:49 -04:00

70 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics.Metrics;
using System.Linq;
using Terminal.Gui;
namespace UICatalog.Scenarios;
[ScenarioMetadata ("ShadowStyles Demo", "Demonstrates ShadowStyles Effects.")]
[ScenarioCategory ("Layout")]
public class ShadowStyles : Scenario
{
public override void Main ()
{
Application.Init ();
Window app = new ()
{
Title = GetQuitKeyAndName ()
};
var editor = new AdornmentsEditor ()
{
AutoSelectViewToEdit = true,
};
app.Add (editor);
Window win = new ()
{
X = Pos.Right (editor),
Y = 0,
Width = Dim.Percent (30),
Height = Dim.Percent (30),
Title = "Shadow Window",
Arrangement = ViewArrangement.Movable | ViewArrangement.Overlapped,
BorderStyle = LineStyle.Double,
ShadowStyle = ShadowStyle.Transparent
};
var buttonInWin = new Button
{
X = Pos.Center (),
Y = Pos.Center (), Text = "Button in Window",
ShadowStyle = ShadowStyle.Opaque
};
win.Add (buttonInWin);
app.Add (win);
var button = new Button
{
X = Pos.Right (editor) + 10,
Y = Pos.Center (), Text = "Button",
ShadowStyle = ShadowStyle.Opaque
};
app.Add (button);
editor.AutoSelectViewToEdit = true;
editor.AutoSelectSuperView = app;
editor.AutoSelectAdornments = false;
Application.Run (app);
app.Dispose ();
Application.Shutdown ();
}
}