Mega Code Archive

 
Categories / C# / GUI Windows Form
 

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());   } }