Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // The example is from the book "Windows Forms in Action 2-nd edition 2012" coolcsn
- // csc /t:exe /out:MyForm.exe *.cs
- using System; // must be first
- // the program works without the following line
- // The following line of the program simply sets the version number for the program to 1.0, matching the section number of the book.
- // You can verify this by right-clicking the myform.exe file, selecting Properties, and then clicking the Version tab.
- [assembly: System.Reflection.AssemblyVersion("1.0")]
- namespace MyNamespace
- {
- // System.Windows.Forms is the namespace
- // Form is the class
- class MyForm : System.Windows.Forms.Form
- {
- // constructor
- public MyForm()
- {
- // set a property
- this.Text = "Hello Form";
- }
- // If there are multiple Main methods in an assembly, the /main switch can
- // be used to indicate which method should be used, or to specify an alternate method
- // as the entry point.
- // This line is required in Windows Forms applications,
- // and indicates that the thread executing this method should use a singlethreaded
- // apartment (STA) threading model.
- [System.STAThread] // - it works without this annotation also
- static void Main()
- {
- // System.Windows.Forms is the namespace
- // Application is the class
- // EnableVisualStyles() - static method
- // Enables visual styles for the application.
- // It still works even without this line of code
- System.Windows.Forms.Application.EnableVisualStyles();
- // Starts a standard message loop on the current thread. If a Form is given, also makes that form visible.
- // wait for operating system messages
- System.Windows.Forms.Application.Run(new MyForm()); // this is blocking
- /* or you can explicitly create a context
- System.Windows.Forms.Application.EnableVisualStyles();
- System.Windows.Forms.Form f = new MyForm();
- System.Windows.Forms.ApplicationContext context
- = new System.Windows.Forms.ApplicationContext();
- context.MainForm = f;
- System.Windows.Forms.Application.Run(context);
- */
- Console.WriteLine("Hello World!"); // at the same time writes to the console after closing the
- // previous statemnet.
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement