Change Standard Button Text Alignment : Button « GUI Windows Form « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » GUI Windows Form » ButtonScreenshots 
Change Standard Button Text Alignment
Change Standard Button Text Alignment

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

  public class ButtonForm : System.Windows.Forms.Form
  {
    private System.Windows.Forms.Button btnImage;
    private System.Windows.Forms.Button btnStandard;
    private System.Windows.Forms.Button btnPopup;
    private System.Windows.Forms.Button btnFlat;

    // Hold the current text alignment
    ContentAlignment currAlignment = ContentAlignment.MiddleCenter;
    int currEnumPos = 0;
    
    public ButtonForm()
    {
      InitializeComponent();

      // Set btnStandard as default accept.
      this.AcceptButton = btnStandard;

      CenterToScreen();
    }
    private void InitializeComponent()
    {
      this.btnStandard = new System.Windows.Forms.Button();
      this.btnFlat = new System.Windows.Forms.Button();
      this.btnImage = new System.Windows.Forms.Button();
      this.btnPopup = new System.Windows.Forms.Button();
      this.SuspendLayout();
      // 
      // btnStandard
      // 
      this.btnStandard.Font = new System.Drawing.Font("Microsoft Sans Serif"12F);
      this.btnStandard.ForeColor = System.Drawing.SystemColors.ControlText;
      this.btnStandard.Location = new System.Drawing.Point(1680);
      this.btnStandard.Name = "btnStandard";
      this.btnStandard.Size = new System.Drawing.Size(31288);
      this.btnStandard.TabIndex = 2;
      this.btnStandard.Text = "I am a standard button";
      this.btnStandard.Click += new System.EventHandler(this.btnStandard_Click);
      // 
      // btnFlat
      // 
      this.btnFlat.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
      this.btnFlat.ForeColor = System.Drawing.Color.Blue;
      this.btnFlat.Location = new System.Drawing.Point(1624);
      this.btnFlat.Name = "btnFlat";
      this.btnFlat.Size = new System.Drawing.Size(15232);
      this.btnFlat.TabIndex = 0;
      this.btnFlat.Text = "I am flat...";
      // 
      // btnImage
      // 
      this.btnImage.Font = new System.Drawing.Font("Microsoft Sans Serif"20F, System.Drawing.FontStyle.Bold);
      this.btnImage.Image = new Bitmap("winter.jpg");
      this.btnImage.Location = new System.Drawing.Point(16192);
      this.btnImage.Name = "btnImage";
      this.btnImage.Size = new System.Drawing.Size(31272);
      this.btnImage.TabIndex = 3;
      this.btnImage.Text = "Image Button";
      this.btnImage.TextAlign = System.Drawing.ContentAlignment.TopCenter;
      // 
      // btnPopup
      // 
      this.btnPopup.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.btnPopup.ForeColor = System.Drawing.SystemColors.ControlText;
      this.btnPopup.Location = new System.Drawing.Point(17624);
      this.btnPopup.Name = "btnPopup";
      this.btnPopup.Size = new System.Drawing.Size(15232);
      this.btnPopup.TabIndex = 1;
      this.btnPopup.Text = "I am a Popup!";
      // 
      // ButtonForm
      // 
      this.AcceptButton = this.btnStandard;
      this.AutoScaleBaseSize = new System.Drawing.Size(513);
      this.ClientSize = new System.Drawing.Size(340269);
      this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                      this.btnImage,
                                      this.btnStandard,
                                      this.btnPopup,
                                      this.btnFlat});
      this.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
      this.Name = "ButtonForm";
      this.Text = "Buttons";
      this.ResumeLayout(false);

    }
    
    protected void btnStandard_Click (object sender, System.EventArgs e)
    {      
      Array values = Enum.GetValues(currAlignment.GetType());
    
      currEnumPos++;
      if(currEnumPos >= values.Length)
        currEnumPos = 0;
      
      currAlignment = (ContentAlignment)ContentAlignment.Parse(currAlignment.GetType()
              values.GetValue(currEnumPos).ToString());
      btnStandard.TextAlign = currAlignment;

      btnStandard.Text = currAlignment.ToString();
    }

    public static void Main(string[] args
    {
      Application.Run(new ButtonForm());
    }
  }


           
       
Related examples in the same category
1.Button Image, Size, Parent
2.Button Name, TabIndex, Text
3.Button Localtion
4.Button FlatStyle Styles
5.Add image to ButtonAdd image to Button
6.Add quotation char to Button textAdd quotation char to Button text
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
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.