Click here to Skip to main content
15,884,472 members
Articles / Multimedia / GDI+

C# Application to Create and Recognize Mouse Gestures (.NET)

Rate me:
Please Sign up or sign in to vote.
4.82/5 (39 votes)
17 Mar 2008CPOL5 min read 221.4K   8.1K   144  
This program can create and recognize mouse gestures.
namespace GestureRecognizer
{
	partial class NeuralNetworkPreviewForm
	{
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
		protected override void Dispose(bool disposing)
		{
			if (disposing && (components != null))
			{
				components.Dispose();
			}
			base.Dispose(disposing);
		}

		#region Windows Form Designer generated code

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.NeuralNetworkPreviewTextBox = new System.Windows.Forms.TextBox();
			this.SuspendLayout();
			// 
			// NeuralNetworkPreviewTextBox
			// 
			this.NeuralNetworkPreviewTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
			this.NeuralNetworkPreviewTextBox.Location = new System.Drawing.Point(0, 0);
			this.NeuralNetworkPreviewTextBox.Multiline = true;
			this.NeuralNetworkPreviewTextBox.Name = "NeuralNetworkPreviewTextBox";
			this.NeuralNetworkPreviewTextBox.ReadOnly = true;
			this.NeuralNetworkPreviewTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
			this.NeuralNetworkPreviewTextBox.Size = new System.Drawing.Size(403, 297);
			this.NeuralNetworkPreviewTextBox.TabIndex = 0;
			this.NeuralNetworkPreviewTextBox.WordWrap = false;
			// 
			// NeuralNetworkPreviewForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(403, 297);
			this.Controls.Add(this.NeuralNetworkPreviewTextBox);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
			this.Name = "NeuralNetworkPreviewForm";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "Neural network preview";
			this.ResumeLayout(false);
			this.PerformLayout();

		}

		#endregion

		private System.Windows.Forms.TextBox NeuralNetworkPreviewTextBox;
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Apex s.r.l.
Italy Italy
I got my Computer Science (Engineering) Master's Degree at the Siena University (Italy), but I'm from Rieti (a small town next to Rome).
My hobbies are RPG, MMORGP, programming and 3D graphics.
At the moment I'm employed at Apex s.r.l. (Modena, Italy) as a senior software developer, working for a WPF/WCF project in Rome.

Comments and Discussions