Anchor Left and Top : Anchor « GUI Windows Form « C# / C Sharp






Anchor Left and Top

Anchor Left and Top

  using System;
  using System.Drawing;
  using System.Collections;
  using System.ComponentModel;
  using System.Windows.Forms;
  using System.Data;

  public class AnchorForm : System.Windows.Forms.Form
  {
    private System.Windows.Forms.Button button1;

    public AnchorForm()
    {
      InitializeComponent();
      CenterToScreen();
    }
    private void InitializeComponent()
    {
      this.button1 = new System.Windows.Forms.Button();
      this.Controls.AddRange(new System.Windows.Forms.Control[] {this.button1});
      this.Text = "Anchoring (and Docking) Controls";
      
            // anchor left and top
            button1.Anchor = AnchorStyles.Top | AnchorStyles.Left;
      button1.Text = "Anchor: " + button1.Anchor.ToString() + 
        "\nDock: " + button1.Dock.ToString();



    }
    static void Main() 
    {
      Application.Run(new AnchorForm());
    }

  }

           
       








Related examples in the same category

1.Anchor Two Buttons
2.Anchor Style: RightAnchor Style: Right
3.Anchor Style: BottomAnchor Style: Bottom
4.Try all AnchorStyles