To Examples
Greeter2 Example, source code file Form1.cs
using System; using System.Drawing; using System.Windows.Forms; ///
/// Greeter2 Example: Input the name of the person /// to greet, then display a greeting in one of /// four languages, given the name of the person /// to greet. Also show an image related to the /// selected language. ///
///
/// (1) The non-english symbols ç, í, á and ¿ are /// entered using Insert Symbol in MS-Word. /// (2) The images are located in the project folder /// with the source code files. ///
namespace Greeter2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnShowGreeting_Click(object sender, EventArgs e) { string name = txtName.Text; if (radEnglish.Checked) { txtGreeting.Text = "Good day." + "\r\nHow are you, " + name + "?"; picDisplay.Image = Image.FromFile("../../english.jpg"); } else if (radFrench.Checked) { txtGreeting.Text = "Bon jour." + "\r\nComment ça va, " + name + "?"; picDisplay.Image = Image.FromFile("../../french.jpg"); } else if (radGerman.Checked) { txtGreeting.Text = "Guten Tag." + "\r\nWie gehen Sie, " + name + "?"; picDisplay.Image = Image.FromFile("../../german.jpg"); } else if (radSpanish.Checked) { txtGreeting.Text = "Buenos Días." + "\r\n¿Como estás, " + name + "?"; picDisplay.Image = Image.FromFile("../../spanish.jpg"); } } } }
Greeter2 Example, source code file Form1.Designer.cs
namespace Greeter2 { partial class Form1 { ///
/// Required designer variable. ///
private System.ComponentModel.IContainer components = null; ///
/// Clean up any resources being used. ///
///
true if managed resources /// should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code ///
/// Required method for Designer support - do not modify /// the contents of this method with the code editor. ///
private void InitializeComponent() { this.groupBox1 = new System.Windows.Forms.GroupBox(); this.radEnglish = new System.Windows.Forms.RadioButton(); this.radFrench = new System.Windows.Forms.RadioButton(); this.radGerman = new System.Windows.Forms.RadioButton(); this.radSpanish = new System.Windows.Forms.RadioButton(); this.picDisplay = new System.Windows.Forms.PictureBox(); this.txtGreeting = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.txtName = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.btnShowGreeting = new System.Windows.Forms.Button(); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.picDisplay)).BeginInit(); this.SuspendLayout(); // // groupBox1 // this.groupBox1.Controls.Add(this.radSpanish); this.groupBox1.Controls.Add(this.radGerman); this.groupBox1.Controls.Add(this.radFrench); this.groupBox1.Controls.Add(this.radEnglish); this.groupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.groupBox1.Location = new System.Drawing.Point(39, 23); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(143, 141); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "Language"; // // radEnglish // this.radEnglish.AutoSize = true; this.radEnglish.Checked = true; this.radEnglish.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.radEnglish.Location = new System.Drawing.Point(6, 21); this.radEnglish.Name = "radEnglish"; this.radEnglish.Size = new System.Drawing.Size(81, 22); this.radEnglish.TabIndex = 0; this.radEnglish.TabStop = true; this.radEnglish.Text = "English"; this.radEnglish.UseVisualStyleBackColor = true; // // radFrench // this.radFrench.AutoSize = true; this.radFrench.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.radFrench.Location = new System.Drawing.Point(6, 49); this.radFrench.Name = "radFrench"; this.radFrench.Size = new System.Drawing.Size(78, 22); this.radFrench.TabIndex = 1; this.radFrench.Text = "French"; this.radFrench.UseVisualStyleBackColor = true; // // radGerman // this.radGerman.AutoSize = true; this.radGerman.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.radGerman.Location = new System.Drawing.Point(6, 77); this.radGerman.Name = "radGerman"; this.radGerman.Size = new System.Drawing.Size(86, 22); this.radGerman.TabIndex = 2; this.radGerman.Text = "German"; this.radGerman.UseVisualStyleBackColor = true; // // radSpanish // this.radSpanish.AutoSize = true; this.radSpanish.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.radSpanish.Location = new System.Drawing.Point(6, 105); this.radSpanish.Name = "radSpanish"; this.radSpanish.Size = new System.Drawing.Size(86, 22); this.radSpanish.TabIndex = 3; this.radSpanish.Text = "Spanish"; this.radSpanish.UseVisualStyleBackColor = true; // // picDisplay // this.picDisplay.Location = new System.Drawing.Point(231, 31); this.picDisplay.Name = "picDisplay"; this.picDisplay.Size = new System.Drawing.Size(188, 133); this.picDisplay.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.picDisplay.TabIndex = 1; this.picDisplay.TabStop = false; // // txtGreeting // this.txtGreeting.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtGreeting.Location = new System.Drawing.Point(231, 170); this.txtGreeting.Multiline = true; this.txtGreeting.Name = "txtGreeting"; this.txtGreeting.Size = new System.Drawing.Size(188, 79); this.txtGreeting.TabIndex = 4; // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(287, 252); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(79, 20); this.label1.TabIndex = 5; this.label1.Text = "Greeting"; // // txtName // this.txtName.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtName.Location = new System.Drawing.Point(39, 175); this.txtName.Name = "txtName"; this.txtName.Size = new System.Drawing.Size(143, 26); this.txtName.TabIndex = 1; // // label2 // this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.Location = new System.Drawing.Point(86, 204); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(55, 20); this.label2.TabIndex = 2; this.label2.Text = "Name"; // // btnShowGreeting // this.btnShowGreeting.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnShowGreeting.Location = new System.Drawing.Point(39, 245); this.btnShowGreeting.Name = "btnShowGreeting"; this.btnShowGreeting.Size = new System.Drawing.Size(143, 34); this.btnShowGreeting.TabIndex = 3; this.btnShowGreeting.Text = "Show Greeting"; this.btnShowGreeting.UseVisualStyleBackColor = true; this.btnShowGreeting.Click += new System.EventHandler(this.btnShowGreeting_Click); // // Form1 // this.AcceptButton = this.btnShowGreeting; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(431, 306); this.Controls.Add(this.btnShowGreeting); this.Controls.Add(this.label2); this.Controls.Add(this.txtName); this.Controls.Add(this.label1); this.Controls.Add(this.txtGreeting); this.Controls.Add(this.picDisplay); this.Controls.Add(this.groupBox1); this.Name = "Form1"; this.Text = "Greeter2 Example"; this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.picDisplay)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.RadioButton radSpanish; private System.Windows.Forms.RadioButton radGerman; private System.Windows.Forms.RadioButton radFrench; private System.Windows.Forms.RadioButton radEnglish; private System.Windows.Forms.PictureBox picDisplay; private System.Windows.Forms.TextBox txtGreeting; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox txtName; private System.Windows.Forms.Label label2; private System.Windows.Forms.Button btnShowGreeting; } }