Advertisement
wingman007

WinFormCreatedOnTheConsole_v1.4

Mar 24th, 2016
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.93 KB | None | 0 0
  1. // The example is from the book "Windows Forms in Action 2-nd edition 2012" coolcsn
  2. // USE: 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  
  5. // the reference switch can be used like this  
  6. // csc MyForm.cs /r:System.dll /r:System.Windows.Forms.dll /r:System.Drawing.dll
  7. using System; // must be first
  8. // for the controls you need to add another namespace
  9. using System.Windows.Forms;
  10.  
  11. // for Bitmap
  12. using System.Drawing;
  13. /*
  14.  using WFalias = System.Windows.Forms
  15.  using MyAppAlias = System.Windows.Forms.Application
  16. With these defined, we could write our Main method as:
  17.  public static void Main()
  18.  {
  19.  WFalias.Application.EnableVisualStyles();
  20.  MyAppAlias.Run(new MyForm());
  21.  }
  22.  */
  23.  
  24. // the program works without the following line
  25. // The following line of the program simply sets the version number for the program to 1.0, matching the section number of the book.
  26. // You can verify this by right-clicking the myform.exe file, selecting Properties, and then clicking the Version tab.
  27. [assembly: System.Reflection.AssemblyVersion("1.4")]
  28. namespace MyNamespace
  29. {
  30.     // System.Windows.Forms is the namespace
  31.     // Form is the class
  32.     class MyForm : System.Windows.Forms.Form
  33.     {
  34.         // lets create fields
  35.         private Button btnLoad;
  36.         private PictureBox pbxPhoto;
  37.        
  38.         // constructor
  39.         public MyForm()
  40.         {
  41.             // set a property
  42.             this.Text = "Hello Form";
  43.            
  44.             // 1. Create and configure a button
  45.             btnLoad = new Button();
  46.             btnLoad.Text = "&Load";
  47.             btnLoad.Left = 10;
  48.             btnLoad.Top = 10;
  49.            
  50.             //  defined internally by the .NET Framework as follows:
  51.             // public delegate void EventHandler(object sender, EventArgs e);
  52.             btnLoad.Click += new EventHandler(this.HandleLoadClick);
  53.            
  54.              // All controls in the .NET Framework support the Anchor property for this purpose. The property is set using the AnchorStyles enumeration, as shown in .NET
  55.             // to allow resize
  56.             btnLoad.Anchor = AnchorStyles.Top | AnchorStyles.Left;
  57.            
  58.             // 2. Create and configure a picture box
  59.             pbxPhoto = new PictureBox();
  60.            
  61.              pbxPhoto.BorderStyle =
  62.              System.Windows.Forms.BorderStyle.Fixed3D;
  63.              pbxPhoto.Width = this.Width / 2;
  64.              pbxPhoto.Height = this.Height / 2;
  65.              pbxPhoto.Left = (this.Width - pbxPhoto.Width) / 2;
  66.              pbxPhoto.Top = (this.Height - pbxPhoto.Height) / 2;
  67.              pbxPhoto.SizeMode = PictureBoxSizeMode.Zoom;
  68.              // Like Anchor, the Dock property takes its values from an enumeration, in this case the DockStyle enumeration.
  69.              // pbxPhoto.Dock = DockStyle.Fill;
  70.              
  71.              // All controls in the .NET Framework support the Anchor property for this purpose. The property is set using the AnchorStyles enumeration, as shown in .NET
  72.              pbxPhoto.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
  73.              
  74.              
  75.              
  76.              // instance of the Control.ControlCollectionclass
  77.              // 3. Add our new controls to the form
  78.              this.Controls.Add(btnLoad);
  79.              this.Controls.Add(pbxPhoto);
  80.         }
  81.  
  82.         // the event handler
  83.         private void HandleLoadClick(object sender, System.EventArgs e)
  84.         {
  85.             OpenFileDialog dlg = new OpenFileDialog();
  86.             dlg.Title = "Open Photo";
  87.             dlg.Filter = "jpg files (*.jpg)|*.jpg|All files (*.*)|*.*";
  88.             if (dlg.ShowDialog() == DialogResult.OK)
  89.             {
  90.                 // using System.Drawing;
  91.                 pbxPhoto.Image = new Bitmap(dlg.OpenFile());
  92.             }
  93.             dlg.Dispose();
  94.         }      
  95.  
  96. // If there are multiple Main methods in an assembly, the /main switch can
  97. // be used to indicate which method should be used, or to specify an alternate method
  98. // as the entry point.
  99.  
  100. // This line is required in Windows Forms applications,
  101. // and indicates that the thread executing this method should use a singlethreaded
  102. // apartment (STA) threading model.
  103.  
  104.         [System.STAThread] // - it works without this annotation also
  105.         // we can use /main switch to the compiler to tell wich is the main method
  106.         static void Main()
  107.         {  
  108.             // System.Windows.Forms is the namespace
  109.             // Application is the class
  110.             // EnableVisualStyles() - static method
  111.             // Enables visual styles for the application.
  112.             // It still works even without this line of code
  113.             System.Windows.Forms.Application.EnableVisualStyles();
  114.  
  115.             // Starts a standard message loop on the current thread. If a Form is given, also makes that form visible.
  116.             //  wait for operating system messages
  117.             System.Windows.Forms.Application.Run(new MyForm()); // this is blocking
  118.  
  119.             /* or you can explicitly create a context          
  120.             System.Windows.Forms.Application.EnableVisualStyles();
  121.              System.Windows.Forms.Form f = new MyForm();
  122.              System.Windows.Forms.ApplicationContext context
  123.              = new System.Windows.Forms.ApplicationContext();
  124.              context.MainForm = f;
  125.              System.Windows.Forms.Application.Run(context);
  126.             */
  127.  
  128.             Console.WriteLine("Hello World!"); // at the same time writes to the console after closing the
  129.             // previous statemnet.
  130.         }
  131.     }
  132. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement