Dock Style: None : Docking « GUI Windows Form « C# / C Sharp






Dock Style: None

Dock Style: None

  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";
      
      
            // dock None
      button1.Dock = DockStyle.None;
      button1.Text = "Anchor: " + button1.Anchor.ToString() + "\nDock: " + button1.Dock.ToString();
      

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

  }

           
       








Related examples in the same category

1.Dock Two Buttons
2.Dock style: FillDock style: Fill
3.Dock Style: RightDock Style: Right
4.Dock Style: LeftDock Style: Left
5.Dock Style: BottomDock Style: Bottom
6.Dock Style: TopDock Style: Top
7.Docking DemoDocking Demo
8.Control DockingControl Docking