Advertisement
theguild42

Hello Forms

Jan 24th, 2020
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. // A Hello World! program in C#.
  2. using System;
  3. using System.Windows.Forms;
  4.  
  5. public class HelloWorld : Form
  6. {
  7.     static public void Main ()
  8.     {
  9.         Application.Run (new HelloWorld ());
  10.     }
  11.  
  12.     private TextBox textBox;
  13.     public HelloWorld ()
  14.     {
  15.         InitializeComponent();
  16.     }
  17.  
  18.     private void InitializeComponent()
  19.     {
  20.         this.textBox = new System.Windows.Forms.TextBox();
  21.         this.Text = "Hello Forms";
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement