To Examples
TempDesc2 Example, source code file Form1.cs
using System; using System.Windows.Forms; ///
/// Input a Fahrenheit temperature; output a descriptor for that temperature. ///
namespace TempDesc2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnShow_Click(object sender, EventArgs e) { int temperature = 0; string descriptor; if (int.TryParse(txtTemperature.Text, out temperature)) { if (temperature < 32) { descriptor = "frigid"; } else if (temperature < 50) { descriptor = "cold"; } else if (temperature < 65) { descriptor = "chilly"; } else if (temperature < 80) { descriptor = "perfect"; } else { descriptor = "hot"; } } else { descriptor = "NA"; } txtDescriptor.Text = descriptor; } } }
TempDesc2 Example, source code file Form1.Designer.cs
namespace TempDesc2 { 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.txtTemperature = new System.Windows.Forms.TextBox(); this.txtDescriptor = 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, 149); this.btnShow.Name = "btnShow"; this.btnShow.Size = new System.Drawing.Size(163, 32); this.btnShow.TabIndex = 0; this.btnShow.Text = "Show Descriptor"; this.btnShow.UseVisualStyleBackColor = true; this.btnShow.Click += new System.EventHandler(this.btnShow_Click); // // txtTemperature // this.txtTemperature.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtTemperature.Location = new System.Drawing.Point(12, 12); this.txtTemperature.Name = "txtTemperature"; this.txtTemperature.Size = new System.Drawing.Size(163, 26); this.txtTemperature.TabIndex = 1; // // txtDescriptor // this.txtDescriptor.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtDescriptor.Location = new System.Drawing.Point(12, 78); this.txtDescriptor.Name = "txtDescriptor"; this.txtDescriptor.Size = new System.Drawing.Size(163, 26); this.txtDescriptor.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(38, 41); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(111, 20); this.label1.TabIndex = 3; this.label1.Text = "Temperature"; // // 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(48, 107); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(92, 20); this.label2.TabIndex = 4; this.label2.Text = "Descriptor"; // // Form1 // this.AcceptButton = this.btnShow; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(284, 203); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.txtDescriptor); this.Controls.Add(this.txtTemperature); this.Controls.Add(this.btnShow); this.Name = "Form1"; this.Text = "TempDesc2 Example"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnShow; private System.Windows.Forms.TextBox txtTemperature; private System.Windows.Forms.TextBox txtDescriptor; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; } }