mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 16:59:35 +01:00
18 lines
317 B
C#
18 lines
317 B
C#
using System;
|
|
using Terminal.Gui;
|
|
|
|
namespace UICatalog.Scenarios;
|
|
|
|
public class MarginEditor : AdornmentEditor
|
|
{
|
|
public MarginEditor ()
|
|
{
|
|
Title = "_Margin";
|
|
Initialized += MarginEditor_Initialized;
|
|
}
|
|
|
|
private void MarginEditor_Initialized (object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
} |