Microsoft KB Archive/319266

From BetaArchive Wiki

Article ID: 319266

Article Last Modified on 12/11/2006



APPLIES TO

  • Microsoft Visual C# .NET 2002 Standard Edition
  • Microsoft .NET Framework Software Development Kit 1.0 Service Pack 2
  • Microsoft Visual C# 2005 Express Edition



This article was previously published under Q319266

SUMMARY

This step-by-step article shows you how to programmatically add and configure a few commonly used controls on a Windows form. Event handling has been omitted from the sample code.

The Microsoft .NET Framework Software Development Kit (SDK) provides many visual controls that you can use to build a Windows Forms application. You can add and configure controls at design time in Microsoft Visual Studio .NET or Microsoft Visual Studio 2005, or you can add and configure controls programmatically at run time.

back to the top

Requirements

This article assumes that you are familiar with the following topics:

  • Visual C# syntax
  • Visual Studio .NET environment or Visual Studio 2005 environment
  • Purpose of common Visual C# controls

back to the top

Create a Windows Forms Application

  1. Start Visual Studio .NET or Visual Studio 2005, and create a new Visual C# Windows Application project named WinControls. Form1 is added to the project by default.
  2. Double-click Form1 to create and view the Form1_Load event procedure.
  3. Add private instance variables to the Form1 class to work with common Windows controls. The Form1 class starts as follows:

    public class Form1 : System.Windows.Forms.Form
    {
        //Controls.
        private TextBox txtBox = new TextBox();
        private Button btnAdd = new Button();
        private ListBox lstBox = new ListBox();
        private CheckBox chkBox = new CheckBox();
        private Label lblCount = new Label();
    
        //Other code.
    }
                        

    Note The code should be changed in Visual Studio 2005. When you create a Windows Forms project, Visual C# adds one form to the project by default. This form is named Form1. The two files that represent the form are named Form1.cs and Form1.designer.cs. You write your code in Form1.cs. The Designer.cs file is where the Windows Forms Designer writes the code that implements all the actions that you performed by adding controls. For more information about the Windows Forms Designer in Visual C# 2005, visit the following Microsoft Web site:

back to the top

Customize Form and Control Properties

  1. Locate the Form1_Load event procedure, and add the following code to the procedure to customize the appearance of the Form control:

        //Set up the form.
        this.MaximizeBox = false;
        this.MinimizeBox = false;
        this.BackColor = Color.White;
        this.ForeColor = Color.Black;
        this.Size = new System.Drawing.Size(155, 265);
        this.Text = "Run-time Controls";
        this.FormBorderStyle = FormBorderStyle.FixedDialog;
        this.StartPosition = FormStartPosition.CenterScreen;
                        
  2. Add the following code to the Form1_Load event procedure to customize the appearance of the Button control:

        //Format controls. Note: Controls inherit color from parent form.
        this.btnAdd.BackColor = Color.Gray;
        this.btnAdd.Text = "Add";
        this.btnAdd.Location = new System.Drawing.Point(90, 25);
        this.btnAdd.Size = new System.Drawing.Size(50, 25);
                        
  3. Add the following code to customize the appearance of the TextBox control in Form1_Load:

        this.txtBox.Text = "Text";
        this.txtBox.Location = new System.Drawing.Point(10, 25);
        this.txtBox.Size = new System.Drawing.Size(70, 20);
                        
  4. Add the following code to customize the appearance of the ListBox control in Form1_Load:

        this.lstBox.Items.Add("One");
        this.lstBox.Items.Add("Two");
        this.lstBox.Items.Add("Three");
        this.lstBox.Items.Add("Four");
        this.lstBox.Sorted = true;
        this.lstBox.Location = new System.Drawing.Point(10, 55);
        this.lstBox.Size = new System.Drawing.Size(130, 95);
                        
  5. Add the following code to customize the appearance of the CheckBox control in Form1_Load:

        this.chkBox.Text = "Disable";
        this.chkBox.Location = new System.Drawing.Point(15, 190);
        this.chkBox.Size = new System.Drawing.Size(110, 30);
                        
  6. Add the following code to customize the appearance of the Label control in Form1_Load:

        this.lblCount.Text = lstBox.Items.Count.ToString() + " items";
        this.lblCount.Location = new System.Drawing.Point(55, 160);
        this.lblCount.Size = new System.Drawing.Size(65, 15);
                        

back to the top

Add Controls to the Form

  1. Add the following code to add each object to the Controls array of the form at the end of Form1_Load:

        //Add controls to the form.
        this.Controls.Add(btnAdd);
        this.Controls.Add(txtBox);
        this.Controls.Add(lstBox);
        this.Controls.Add(chkBox);
        this.Controls.Add(lblCount);
                        
  2. Save the project.

back to the top

Verify that it Works

To verify that the sample works, click Start on the Debug menu. Note that although the form and the controls appear, they currently do nothing because you have not written any event handlers.

back to the top

Notes

Remember that the positions of these controls are static. To make them more robust when the form is stretched, make the points dynamic relative to the form position. If the controls are static, stretching the form may interfere with the display of other controls on the form.

back to the top

REFERENCES

For more information about using controls programmatically, see the Windows Applications topic in the Visual C# section of the Visual Studio .NET or Visual Studio 2005 Online Help documentation.

back to the top

Keywords: kbhowtomaster KB319266