source:
Scheduling/trunk/cs/EnhancedPrintPreview/PrintPreviewDemo/Program.cs
Last change on this file was 1246, checked in by , 13 years ago | |
---|---|
File size: 468 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Windows.Forms; |
4 | |
5 | namespace PrintPreviewDemo { |
6 | static class Program { |
7 | /// <summary> |
8 | /// The main entry point for the application. |
9 | /// </summary> |
10 | [STAThread] |
11 | static void Main() { |
12 | Application.EnableVisualStyles(); |
13 | Application.SetCompatibleTextRenderingDefault(false); |
14 | Application.Run(new Form1()); |
15 | } |
16 | } |
17 | } |
Note:
See TracBrowser
for help on using the repository browser.