Advertisement
wingman007

WinFormCreatedOnTheConsole_v1.0

Mar 24th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.17 KB | None | 0 0
  1. // The example is from the book "Windows Forms in Action 2-nd edition 2012" coolcsn
  2. // csc /t:exe /out:MyForm.exe *.cs
  3. using System; // must be first
  4.  
  5. // the program works without the following line
  6. // The following line of the program simply sets the version number for the program to 1.0, matching the section number of the book.
  7. // You can verify this by right-clicking the myform.exe file, selecting Properties, and then clicking the Version tab.
  8. [assembly: System.Reflection.AssemblyVersion("1.0")]
  9. namespace MyNamespace
  10. {
  11.     // System.Windows.Forms is the namespace
  12.     // Form is the class
  13.     class MyForm : System.Windows.Forms.Form
  14.     {
  15.         // constructor
  16.         public MyForm()
  17.         {
  18.             // set a property
  19.             this.Text = "Hello Form";
  20.         }
  21.  
  22.  
  23. // If there are multiple Main methods in an assembly, the /main switch can
  24. // be used to indicate which method should be used, or to specify an alternate method
  25. // as the entry point.
  26.  
  27. // This line is required in Windows Forms applications,
  28. // and indicates that the thread executing this method should use a singlethreaded
  29. // apartment (STA) threading model.
  30.  
  31.         [System.STAThread] // - it works without this annotation also
  32.         static void Main()
  33.         {  
  34.             // System.Windows.Forms is the namespace
  35.             // Application is the class
  36.             // EnableVisualStyles() - static method
  37.             // Enables visual styles for the application.
  38.             // It still works even without this line of code
  39.             System.Windows.Forms.Application.EnableVisualStyles();
  40.  
  41.             // Starts a standard message loop on the current thread. If a Form is given, also makes that form visible.
  42.             //  wait for operating system messages
  43.             System.Windows.Forms.Application.Run(new MyForm()); // this is blocking
  44.  
  45.             /* or you can explicitly create a context          
  46.             System.Windows.Forms.Application.EnableVisualStyles();
  47.              System.Windows.Forms.Form f = new MyForm();
  48.              System.Windows.Forms.ApplicationContext context
  49.              = new System.Windows.Forms.ApplicationContext();
  50.              context.MainForm = f;
  51.              System.Windows.Forms.Application.Run(context);
  52.             */
  53.  
  54.             Console.WriteLine("Hello World!"); // at the same time writes to the console after closing the
  55.             // previous statemnet.
  56.         }
  57.     }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement