From 02f5d86a891edb2f49851b400b0d2b2f8b4e4f98 Mon Sep 17 00:00:00 2001 From: Jacob Palecki Date: Fri, 24 Jul 2020 11:15:04 -0700 Subject: Add a basic windows forms grapher --- grapher/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 grapher/Program.cs (limited to 'grapher/Program.cs') diff --git a/grapher/Program.cs b/grapher/Program.cs new file mode 100644 index 0000000..afd45ba --- /dev/null +++ b/grapher/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace grapher +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} -- cgit v1.2.3 From eeb1287bb2ed3a634bf9f4ac713779dcfea229b2 Mon Sep 17 00:00:00 2001 From: Jacob Palecki Date: Fri, 24 Jul 2020 17:40:48 -0700 Subject: Add correct names and labels --- grapher/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'grapher/Program.cs') diff --git a/grapher/Program.cs b/grapher/Program.cs index afd45ba..b36ece3 100644 --- a/grapher/Program.cs +++ b/grapher/Program.cs @@ -16,7 +16,7 @@ namespace grapher { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new Form1()); + Application.Run(new RawAcceleration()); } } } -- cgit v1.2.3