mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
12 lines
346 B
C#
12 lines
346 B
C#
using System;
|
|
using Terminal.Gui;
|
|
|
|
namespace ReactiveExample {
|
|
public static class Program {
|
|
static void Main (string [] args) {
|
|
Application.Init (); // A hacky way to enable instant UI updates.
|
|
Application.MainLoop.AddTimeout(TimeSpan.FromSeconds(0.1), a => true);
|
|
Application.Run (new LoginView (new LoginViewModel ()));
|
|
}
|
|
}
|
|
} |