namespace Timelapse; using Eto.Forms; public class Program { public static void Main(string[] args) { new Application().Run(new MainForm(args) { Width = 640, Height = 480, Title = "Timelapse Now" }); } }