Dock Two Buttons : Docking « GUI Windows Form « C# / C Sharp






Dock Two Buttons

 


using System;
using System.Drawing;
using System.Windows.Forms;
   
class TwoButtonsDock: Form
{
     public static void Main()
     {
          Application.Run(new TwoButtonsDock());
     }
     public TwoButtonsDock()
     {
          ResizeRedraw = true;
   
          Button btn = new Button();
          btn.Parent = this;
          btn.Text   = "&Larger";
          btn.Height = 2 * Font.Height;
          btn.Dock   = DockStyle.Top;
          btn.Click += new EventHandler(ButtonLargerOnClick);
          
          btn = new Button();
          btn.Parent = this;
          btn.Text   = "&Smaller";
          btn.Height = 2 * Font.Height;
          btn.Dock   = DockStyle.Bottom;
          btn.Click += new EventHandler(ButtonSmallerOnClick);
     }
     void ButtonLargerOnClick(object obj, EventArgs ea)
     {
          Console.WriteLine("large");
     }
     void ButtonSmallerOnClick(object obj, EventArgs ea)
     {
          Console.WriteLine("small");
     }
}

 








Related examples in the same category

1.Dock Style: NoneDock Style: None
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