Button Localtion : Button « GUI Windows Form « C# / C Sharp






Button Localtion

 


using System;
using System.Drawing;
using System.Windows.Forms;
   
class SimpleButton: Form
{
     public static void Main()
     {
          Application.Run(new SimpleButton());
     }
     public SimpleButton()
     {
          Text = "Simple Button";
   
          Button btn   = new Button();
          btn.Parent   = this;
          btn.Text     = "Click Me!";
          btn.Location = new Point(100, 100);
          btn.Click   += new EventHandler(ButtonOnClick);
     }
     void ButtonOnClick(object obj, EventArgs ea)
     {
          Graphics grfx   = CreateGraphics();
          Point    ptText = Point.Empty;
          string   str    = "Button clicked!";
   
          grfx.DrawString(str, Font, new SolidBrush(ForeColor), ptText);
          grfx.Dispose();
     }
}

 








Related examples in the same category

1.Button Image, Size, Parent
2.Button Name, TabIndex, Text
3.Button FlatStyle Styles
4.Add image to ButtonAdd image to Button
5.Add quotation char to Button textAdd quotation char to Button text
6.Change Standard Button Text AlignmentChange Standard Button Text Alignment
7.Popup button, Flat button and Image buttonPopup button, Flat button and Image button
8.Change Button textChange Button text
9.Add two action listeners to a buttonAdd two action listeners to a button
10.Add a ButtonAdd a Button
11.Handle button messagesHandle button messages
12.Add button to formAdd button to form
13.Button click actionButton click action
14.Picture ButtonPicture Button
15.Button Action DemoButton Action Demo
16.Hot Track Button HostHot Track Button Host
17.Button GeneratorButton Generator
18.Popup TextPopup Text
19.Paint Owner-Draw Buttons