Load image to RadioButton : RadioButton « GUI Windows Form « C# / C Sharp






Load image to RadioButton

Load image to RadioButton

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.RadioButton radioButton1;

  public Form1() {
        InitializeComponent();
  }

    private void InitializeComponent()
    {
        this.radioButton1 = new System.Windows.Forms.RadioButton();
        this.SuspendLayout();

        this.radioButton1.Image = new Bitmap("winter.jpg");
        this.radioButton1.Location = new System.Drawing.Point(12, 195);
        this.radioButton1.Name = "radioButton1";
        this.radioButton1.Size = new System.Drawing.Size(224, 47);
        this.radioButton1.TabIndex = 3;
        this.radioButton1.TabStop = true;
        this.radioButton1.Text = "radioButton1";
        this.radioButton1.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.radioButton1);
        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.Radio button check changed eventRadio button check changed event
2.Get selected radio buttonGet selected radio button
3.Using RadioButtons to set message window optionsUsing RadioButtons to set message window options
4.Radio Button click eventRadio Button click event
5.RadioButton check state change eventRadioButton check state change event
6.RadioButton on a formRadioButton on a form
7.RadioButton With ImgRadioButton With Img
8.Radio GroupRadio Group