/VirtualTreeView-TestApp/Program.cs
https://code.google.com/p/martian-gui-controls/ · C# · 22 lines · 16 code · 2 blank · 4 comment · 0 complexity · cbf2923ac7845145969b0aeac06f6ed6 MD5 · raw file
- // Published under http://www.opensource.org/licenses/BSD-3-Clause license, see license.txt file for details.
-
- using System;
- using System.Collections.Generic;
- using System.Windows.Forms;
-
- namespace VirtualTreeViewTestApp
- {
- 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());
- }
- }
- }