Skip to content

Instantly share code, notes, and snippets.

@0x414c49
Created January 13, 2020 13:10
Show Gist options
  • Save 0x414c49/ec73fd6200e1e675e110b454a85f4554 to your computer and use it in GitHub Desktop.
Save 0x414c49/ec73fd6200e1e675e110b454a85f4554 to your computer and use it in GitHub Desktop.
First top window
using Terminal.Gui;
namespace RetroChat
{
class Program
{
static void Main(string[] args)
{
Application.Init();
var top = Application.Top;
var win = new Window("Retro Chat")
{
X = 0,
Y = 1, // Leave one row for the toplevel menu
// By using Dim.Fill(), it will automatically resize without manual intervention
Width = Dim.Fill(),
Height = Dim.Fill()
};
Application.Run();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment