Advertisement
wingman007

WinFormCreatedOnTheConsole_v1.2

Mar 24th, 2016
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.46 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. // /main switch is used to determen which method is the entry point of the application
  4. // /reference switch is used for the
  5. using System; // must be first
  6. // for the controls you need to add another namespace
  7. using System.Windows.Forms;
  8.  
  9. /*
  10.  using WFalias = System.Windows.Forms
  11.  using MyAppAlias = System.Windows.Forms.Application
  12. With these defined, we could write our Main method as:
  13.  public static void Main()
  14.  {
  15.  WFalias.Application.EnableVisualStyles();
  16.  MyAppAlias.Run(new MyForm());
  17.  }
  18.  */
  19.  
  20. // the program works without the following line
  21. // The following line of the program simply sets the version number for the program to 1.0, matching the section number of the book.
  22. // You can verify this by right-clicking the myform.exe file, selecting Properties, and then clicking the Version tab.
  23. [assembly: System.Reflection.AssemblyVersion("1.2")]
  24. namespace MyNamespace
  25. {
  26.     // System.Windows.Forms is the namespace
  27.     // Form is the class
  28.     class MyForm : System.Windows.Forms.Form
  29.     {
  30.         // lets create fields
  31.         private Button btnLoad;
  32.         private PictureBox pbxPhoto;
  33.        
  34.         // constructor
  35.         public MyForm()
  36.         {
  37.             // set a property
  38.             this.Text = "Hello Form";
  39.            
  40.             // 1. Create and configure a button
  41.             btnLoad = new Button();
  42.             btnLoad.Text = "&Load";
  43.             btnLoad.Left = 10;
  44.             btnLoad.Top = 10;
  45.            
  46.             // 2. Create and configure a picture box
  47.             pbxPhoto = new PictureBox();
  48.            
  49.              pbxPhoto.BorderStyle =
  50.              System.Windows.Forms.BorderStyle.Fixed3D;
  51.              pbxPhoto.Width = this.Width / 2;
  52.              pbxPhoto.Height = this.Height / 2;
  53.              pbxPhoto.Left = (this.Width - pbxPhoto.Width) / 2;
  54.              pbxPhoto.Top = (this.Height - pbxPhoto.Height) / 2;
  55.              
  56.              // instance of the Control.ControlCollectionclass
  57.              // 3. Add our new controls to the form
  58.              this.Controls.Add(btnLoad);
  59.              this.Controls.Add(pbxPhoto);
  60.         }
  61.  
  62.  
  63. // If there are multiple Main methods in an assembly, the /main switch can
  64. // be used to indicate which method should be used, or to specify an alternate method
  65. // as the entry point.
  66.  
  67. // This line is required in Windows Forms applications,
  68. // and indicates that the thread executing this method should use a singlethreaded
  69. // apartment (STA) threading model.
  70.  
  71.         [System.STAThread] // - it works without this annotation also
  72.         // we can use /main switch to the compiler to tell wich is the main method
  73.         static void Main()
  74.         {  
  75.             // System.Windows.Forms is the namespace
  76.             // Application is the class
  77.             // EnableVisualStyles() - static method
  78.             // Enables visual styles for the application.
  79.             // It still works even without this line of code
  80.             System.Windows.Forms.Application.EnableVisualStyles();
  81.  
  82.             // Starts a standard message loop on the current thread. If a Form is given, also makes that form visible.
  83.             //  wait for operating system messages
  84.             System.Windows.Forms.Application.Run(new MyForm()); // this is blocking
  85.  
  86.             /* or you can explicitly create a context          
  87.             System.Windows.Forms.Application.EnableVisualStyles();
  88.              System.Windows.Forms.Form f = new MyForm();
  89.              System.Windows.Forms.ApplicationContext context
  90.              = new System.Windows.Forms.ApplicationContext();
  91.              context.MainForm = f;
  92.              System.Windows.Forms.Application.Run(context);
  93.             */
  94.  
  95.             Console.WriteLine("Hello World!"); // at the same time writes to the console after closing the
  96.             // previous statemnet.
  97.         }
  98.     }
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement