To Examples
ConvTemp2 Example, source code file Form1.cs
using System; using System.Windows.Forms; ///
/// Convert a Celsius temperature to Fahrenheit. ///
namespace ConvTemp2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { int cel=0, fahr; if (int.TryParse(txtCel.Text, out cel)) { fahr = 9 * cel / 5 + 32; txtFahr.Text = fahr.ToString(); } else { txtFahr.Text = "NA"; } } } }
ConvTemp2 Example, source code file Form1.Designer.cs
namespace ConvTemp2 { 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.button1 = new System.Windows.Forms.Button(); this.txtCel = new System.Windows.Forms.TextBox(); this.txtFahr = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // button1 // this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.button1.Location = new System.Drawing.Point(12, 148); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(199, 39); this.button1.TabIndex = 0; this.button1.Text = "Convert Temperature"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click); // // txtCel // this.txtCel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtCel.Location = new System.Drawing.Point(12, 12); this.txtCel.Name = "txtCel"; this.txtCel.Size = new System.Drawing.Size(199, 26); this.txtCel.TabIndex = 1; this.txtCel.Text = "0"; this.txtCel.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // // txtFahr // this.txtFahr.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtFahr.Location = new System.Drawing.Point(12, 77); this.txtFahr.Name = "txtFahr"; this.txtFahr.Size = new System.Drawing.Size(199, 26); this.txtFahr.TabIndex = 2; this.txtFahr.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // // 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(8, 41); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(174, 20); this.label1.TabIndex = 3; this.label1.Text = "Celsius 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(8, 106); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(203, 20); this.label2.TabIndex = 4; this.label2.Text = "Fahrenheit Temperature"; // // Form1 // this.AcceptButton = this.button1; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(261, 203); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.txtFahr); this.Controls.Add(this.txtCel); this.Controls.Add(this.button1); this.Name = "Form1"; this.Text = "ConvTemp2"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button button1; private System.Windows.Forms.TextBox txtCel; private System.Windows.Forms.TextBox txtFahr; private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; } }