Created
January 13, 2020 13:10
-
-
Save 0x414c49/ec73fd6200e1e675e110b454a85f4554 to your computer and use it in GitHub Desktop.
First top window
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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