summaryrefslogtreecommitdiff
path: root/grapher/Program.cs
diff options
context:
space:
mode:
authorJacob Palecki <[email protected]>2020-07-24 11:15:04 -0700
committerJacob Palecki <[email protected]>2020-07-24 11:15:04 -0700
commit02f5d86a891edb2f49851b400b0d2b2f8b4e4f98 (patch)
tree31494b77056e89388f6220f68927caa30c79ecf2 /grapher/Program.cs
parentAdded simple c++/cli wrapper (diff)
downloadrawaccel-02f5d86a891edb2f49851b400b0d2b2f8b4e4f98.tar.xz
rawaccel-02f5d86a891edb2f49851b400b0d2b2f8b4e4f98.zip
Add a basic windows forms grapher
Diffstat (limited to 'grapher/Program.cs')
-rw-r--r--grapher/Program.cs22
1 files changed, 22 insertions, 0 deletions
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
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new Form1());
+ }
+ }
+}