To Examples
ClickCounter2 Example, source code file Form1.cs
using System; using System.Windows.Forms; ///
/// Count the number of times that the Click Me button is clicked. ///
namespace ClickCounter2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnClickMe_Click(object sender, EventArgs e) { int nClicks = int.Parse(txtNumClicks.Text); nClicks++; txtNumClicks.Text = nClicks.ToString(); } } }
ClickCounter2 Example, source code file Form1.Designer.cs
namespace ClickCounter2 { 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.btnClickMe = new System.Windows.Forms.Button(); this.txtNumClicks = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // btnClickMe // this.btnClickMe.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnClickMe.Location = new System.Drawing.Point(59, 35); this.btnClickMe.Name = "btnClickMe"; this.btnClickMe.Size = new System.Drawing.Size(164, 33); this.btnClickMe.TabIndex = 0; this.btnClickMe.Text = "Click Me"; this.btnClickMe.UseVisualStyleBackColor = true; this.btnClickMe.Click += new System.EventHandler(this.btnClickMe_Click); // // txtNumClicks // this.txtNumClicks.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtNumClicks.Location = new System.Drawing.Point(59, 88); this.txtNumClicks.Name = "txtNumClicks"; this.txtNumClicks.Size = new System.Drawing.Size(164, 26); this.txtNumClicks.TabIndex = 1; this.txtNumClicks.Text = "0"; this.txtNumClicks.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(70, 117); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(144, 20); this.label1.TabIndex = 2; this.label1.Text = "Number of Clicks"; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(284, 174); this.Controls.Add(this.label1); this.Controls.Add(this.txtNumClicks); this.Controls.Add(this.btnClickMe); this.Name = "Form1"; this.Text = "ClickCounter2"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnClickMe; private System.Windows.Forms.TextBox txtNumClicks; private System.Windows.Forms.Label label1; } }