To Examples
ChineseZodiac2 Example, source code file Form1.cs
using System; using System.Windows.Forms; ///
/// Input year of birth; output Chinese Zodiac animal for that year. ///
namespace ChineseZodiac2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnShow_Click(object sender, EventArgs e) { int year; string animal; if (int.TryParse(txtYear.Text, out year) && year >= 1) { switch (year % 12) { case 0: animal = "Monkey"; break; case 1: animal = "Rooster"; break; case 2: animal = "Dog"; break; case 3: animal = "Pig"; break; case 4: animal = "Rat"; break; case 5: animal = "Ox"; break; case 6: animal = "Tiger"; break; case 7: animal = "Rabbit"; break; case 8: animal = "Dragon"; break; case 9: animal = "Snake"; break; case 10: animal = "Horse"; break; default: animal = "Sheep"; break; } txtAnimal.Text = animal; } } } }
ChineseZodiac2 Example, source code file Form1.Designer.cs
namespace ChineseZodiac2 { 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.btnShow = new System.Windows.Forms.Button(); this.txtYear = new System.Windows.Forms.TextBox(); this.txtAnimal = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // btnShow // this.btnShow.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnShow.Location = new System.Drawing.Point(12, 147); this.btnShow.Name = "btnShow"; this.btnShow.Size = new System.Drawing.Size(195, 39); this.btnShow.TabIndex = 0; this.btnShow.Text = "Show Animal"; this.btnShow.UseVisualStyleBackColor = true; this.btnShow.Click += new System.EventHandler(this.btnShow_Click); // // txtYear // this.txtYear.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtYear.Location = new System.Drawing.Point(12, 12); this.txtYear.Name = "txtYear"; this.txtYear.Size = new System.Drawing.Size(195, 26); this.txtYear.TabIndex = 1; // // txtAnimal // this.txtAnimal.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtAnimal.Location = new System.Drawing.Point(12, 71); this.txtAnimal.Name = "txtAnimal"; this.txtAnimal.Size = new System.Drawing.Size(195, 26); this.txtAnimal.TabIndex = 2; // // 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(57, 41); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(111, 20); this.label1.TabIndex = 3; this.label1.Text = "Year of Birth"; // // 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(12, 100); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(192, 20); this.label2.TabIndex = 4; this.label2.Text = "Chinese Zodiac Animal"; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(284, 231); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.txtAnimal); this.Controls.Add(this.txtYear); this.Controls.Add(this.btnShow); this.Name = "Form1"; this.Text = "ChineseZodiac2"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnShow; private System.Windows.Forms.TextBox txtYear; private System.Windows.Forms.TextBox txtAnimal; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; } }