Add image to Button : Button « GUI Windows Form « C# / C Sharp






Add image to Button

Add image to Button
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

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

  public Form1() {
        InitializeComponent();
  }

    private void InitializeComponent()
    {
        this.button1 = new System.Windows.Forms.Button();
        this.SuspendLayout();

        this.button1.Image = new Bitmap("winter.jpg");
        this.button1.ImageAlign = System.Drawing.ContentAlignment.TopRight;
        this.button1.Location = new System.Drawing.Point(12, 99);
        this.button1.Name = "button1";
        this.button1.Size = new System.Drawing.Size(132, 74);
        this.button1.TabIndex = 1;
        this.button1.Text = "button1";
        this.button1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
        this.button1.UseVisualStyleBackColor = true;
 
        this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.ClientSize = new System.Drawing.Size(299, 271);

        this.Controls.Add(this.button1);
        this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
        this.Name = "ImagesInCommonControls";
        this.Text = "ImagesInCommonControls";
        this.ResumeLayout(false);

    }

  [STAThread]
  static void Main()
  {
    Application.EnableVisualStyles();
    Application.Run(new Form1());
  }

}



           
       








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 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