Click here to Skip to main content
15,892,809 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.8K   8.1K   144  
This program can create and recognize mouse gestures.
namespace GestureRecognizer
{
	partial class MainForm
	{
		/// <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()
		{
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.MainMenu = new System.Windows.Forms.MenuStrip();
            this.FileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.SaveGesturesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ReloadGesturesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
            this.ExitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.SettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ChangeSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ManageGesturesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.NeuralNetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.NeuralNetSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.ThresholdsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.TrainToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.PerformancesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.VerifyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.validateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.testToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.HelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.AboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.InfoLabel = new GestureRecognizer.TransparentLabel();
            this.RecognizedGesturePanel = new GestureRecognizer.GesturePanel();
            this.CurrentGesturePanel = new GestureRecognizer.GesturePanel();
            this.MessageLabel = new GestureRecognizer.TransparentLabel();
            this.OpenNetFileDialog = new System.Windows.Forms.OpenFileDialog();
            this.SaveNetFileDialog = new System.Windows.Forms.SaveFileDialog();
            this.Bar = new System.Windows.Forms.ProgressBar();
            this.MainMenu.SuspendLayout();
            this.SuspendLayout();
            // 
            // Worker
            // 
            this.Worker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.Worker_DoWork);
            this.Worker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.Worker_RunWorkerCompleted);
            this.Worker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.Worker_ProgressChanged);
            // 
            // MainMenu
            // 
            this.MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.FileToolStripMenuItem,
            this.SettingsToolStripMenuItem,
            this.NeuralNetToolStripMenuItem,
            this.HelpToolStripMenuItem});
            this.MainMenu.Location = new System.Drawing.Point(0, 0);
            this.MainMenu.Name = "MainMenu";
            this.MainMenu.Size = new System.Drawing.Size(492, 24);
            this.MainMenu.TabIndex = 3;
            this.MainMenu.Text = "menuStrip1";
            // 
            // FileToolStripMenuItem
            // 
            this.FileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.SaveGesturesToolStripMenuItem,
            this.ReloadGesturesToolStripMenuItem,
            this.toolStripMenuItem3,
            this.ExitToolStripMenuItem});
            this.FileToolStripMenuItem.Name = "FileToolStripMenuItem";
            this.FileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
            this.FileToolStripMenuItem.Text = "&File";
            // 
            // SaveGesturesToolStripMenuItem
            // 
            this.SaveGesturesToolStripMenuItem.Name = "SaveGesturesToolStripMenuItem";
            this.SaveGesturesToolStripMenuItem.Size = new System.Drawing.Size(196, 22);
            this.SaveGesturesToolStripMenuItem.Text = "&Save current gestures";
            this.SaveGesturesToolStripMenuItem.Click += new System.EventHandler(this.SaveGesturesToolStripMenuItem_Click);
            // 
            // ReloadGesturesToolStripMenuItem
            // 
            this.ReloadGesturesToolStripMenuItem.Name = "ReloadGesturesToolStripMenuItem";
            this.ReloadGesturesToolStripMenuItem.Size = new System.Drawing.Size(196, 22);
            this.ReloadGesturesToolStripMenuItem.Text = "&Reload known gestures";
            this.ReloadGesturesToolStripMenuItem.Click += new System.EventHandler(this.ReloadGesturesToolStripMenuItem_Click);
            // 
            // toolStripMenuItem3
            // 
            this.toolStripMenuItem3.Name = "toolStripMenuItem3";
            this.toolStripMenuItem3.Size = new System.Drawing.Size(193, 6);
            // 
            // ExitToolStripMenuItem
            // 
            this.ExitToolStripMenuItem.Name = "ExitToolStripMenuItem";
            this.ExitToolStripMenuItem.Size = new System.Drawing.Size(196, 22);
            this.ExitToolStripMenuItem.Text = "&Exit";
            this.ExitToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItem_Click);
            // 
            // SettingsToolStripMenuItem
            // 
            this.SettingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.ChangeSettingsToolStripMenuItem,
            this.ManageGesturesToolStripMenuItem});
            this.SettingsToolStripMenuItem.Name = "SettingsToolStripMenuItem";
            this.SettingsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
            this.SettingsToolStripMenuItem.Text = "&Settings";
            // 
            // ChangeSettingsToolStripMenuItem
            // 
            this.ChangeSettingsToolStripMenuItem.Name = "ChangeSettingsToolStripMenuItem";
            this.ChangeSettingsToolStripMenuItem.Size = new System.Drawing.Size(173, 22);
            this.ChangeSettingsToolStripMenuItem.Text = "&Change settings...";
            this.ChangeSettingsToolStripMenuItem.Click += new System.EventHandler(this.ChangeSettingsToolStripMenuItem_Click);
            // 
            // ManageGesturesToolStripMenuItem
            // 
            this.ManageGesturesToolStripMenuItem.Name = "ManageGesturesToolStripMenuItem";
            this.ManageGesturesToolStripMenuItem.Size = new System.Drawing.Size(173, 22);
            this.ManageGesturesToolStripMenuItem.Text = "&Manage gestures...";
            this.ManageGesturesToolStripMenuItem.Click += new System.EventHandler(this.ManageGesturesToolStripMenuItem_Click);
            // 
            // NeuralNetToolStripMenuItem
            // 
            this.NeuralNetToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.NeuralNetSettingsToolStripMenuItem,
            this.ThresholdsToolStripMenuItem,
            this.TrainToolStripMenuItem,
            this.PerformancesToolStripMenuItem,
            this.VerifyToolStripMenuItem,
            this.validateToolStripMenuItem,
            this.testToolStripMenuItem});
            this.NeuralNetToolStripMenuItem.Name = "NeuralNetToolStripMenuItem";
            this.NeuralNetToolStripMenuItem.Size = new System.Drawing.Size(74, 20);
            this.NeuralNetToolStripMenuItem.Text = "&Neural net";
            // 
            // NeuralNetSettingsToolStripMenuItem
            // 
            this.NeuralNetSettingsToolStripMenuItem.Name = "NeuralNetSettingsToolStripMenuItem";
            this.NeuralNetSettingsToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
            this.NeuralNetSettingsToolStripMenuItem.Text = "&Neural network...";
            this.NeuralNetSettingsToolStripMenuItem.Click += new System.EventHandler(this.NeuralNetworkToolStripMenuItem_Click);
            // 
            // ThresholdsToolStripMenuItem
            // 
            this.ThresholdsToolStripMenuItem.Name = "ThresholdsToolStripMenuItem";
            this.ThresholdsToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
            this.ThresholdsToolStripMenuItem.Text = "&Thresholds...";
            this.ThresholdsToolStripMenuItem.Click += new System.EventHandler(this.ThresholdsToolStripMenuItem_Click);
            // 
            // TrainToolStripMenuItem
            // 
            this.TrainToolStripMenuItem.Name = "TrainToolStripMenuItem";
            this.TrainToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
            this.TrainToolStripMenuItem.Text = "&Train...";
            this.TrainToolStripMenuItem.Click += new System.EventHandler(this.TrainToolStripMenuItem_Click);
            // 
            // PerformancesToolStripMenuItem
            // 
            this.PerformancesToolStripMenuItem.Name = "PerformancesToolStripMenuItem";
            this.PerformancesToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
            this.PerformancesToolStripMenuItem.Text = "&Performances";
            this.PerformancesToolStripMenuItem.Click += new System.EventHandler(this.PerformancesToolStripMenuItem_Click);
            // 
            // VerifyToolStripMenuItem
            // 
            this.VerifyToolStripMenuItem.CheckOnClick = true;
            this.VerifyToolStripMenuItem.Name = "VerifyToolStripMenuItem";
            this.VerifyToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
            this.VerifyToolStripMenuItem.Text = "&Verify";
            this.VerifyToolStripMenuItem.CheckedChanged += new System.EventHandler(this.VerifyToolStripMenuItem_CheckedChanged);
            // 
            // validateToolStripMenuItem
            // 
            this.validateToolStripMenuItem.Name = "validateToolStripMenuItem";
            this.validateToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
            this.validateToolStripMenuItem.Text = "V&alidate";
            this.validateToolStripMenuItem.Click += new System.EventHandler(this.validateToolStripMenuItem_Click);
            // 
            // testToolStripMenuItem
            // 
            this.testToolStripMenuItem.Name = "testToolStripMenuItem";
            this.testToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
            this.testToolStripMenuItem.Text = "Debug Button";
            this.testToolStripMenuItem.Visible = false;
            this.testToolStripMenuItem.Click += new System.EventHandler(this.testToolStripMenuItem_Click);
            // 
            // HelpToolStripMenuItem
            // 
            this.HelpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.AboutToolStripMenuItem});
            this.HelpToolStripMenuItem.Name = "HelpToolStripMenuItem";
            this.HelpToolStripMenuItem.Size = new System.Drawing.Size(24, 20);
            this.HelpToolStripMenuItem.Text = "&?";
            // 
            // AboutToolStripMenuItem
            // 
            this.AboutToolStripMenuItem.Name = "AboutToolStripMenuItem";
            this.AboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
            this.AboutToolStripMenuItem.Text = "&About";
            this.AboutToolStripMenuItem.Click += new System.EventHandler(this.AboutToolStripMenuItem_Click);
            // 
            // InfoLabel
            // 
            this.InfoLabel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.InfoLabel.BaseColor = global::GestureRecognizer.Properties.Settings.Default.InfoLabelColor;
            this.InfoLabel.DataBindings.Add(new System.Windows.Forms.Binding("BaseColor", global::GestureRecognizer.Properties.Settings.Default, "InfoLabelColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.InfoLabel.DataBindings.Add(new System.Windows.Forms.Binding("Transparency", global::GestureRecognizer.Properties.Settings.Default, "InfoLabelTransparency", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.InfoLabel.DataBindings.Add(new System.Windows.Forms.Binding("StandardColor", global::GestureRecognizer.Properties.Settings.Default, "InfoLabelStandardColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.InfoLabel.ErrorColor = global::GestureRecognizer.Properties.Settings.Default.InfoLabelErrorColor;
            this.InfoLabel.ForeColor = System.Drawing.Color.Black;
            this.InfoLabel.InfoColor = global::GestureRecognizer.Properties.Settings.Default.InfoLabelInfoColor;
            this.InfoLabel.Location = new System.Drawing.Point(12, 38);
            this.InfoLabel.Name = "InfoLabel";
            this.InfoLabel.Size = new System.Drawing.Size(199, 44);
            this.InfoLabel.StandardColor = global::GestureRecognizer.Properties.Settings.Default.InfoLabelStandardColor;
            this.InfoLabel.TabIndex = 7;
            this.InfoLabel.Transparency = global::GestureRecognizer.Properties.Settings.Default.InfoLabelTransparency;
            // 
            // RecognizedGesturePanel
            // 
            this.RecognizedGesturePanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.RecognizedGesturePanel.BaseColor = global::GestureRecognizer.Properties.Settings.Default.RecognizedPanelColor;
            this.RecognizedGesturePanel.DataBindings.Add(new System.Windows.Forms.Binding("BaseColor", global::GestureRecognizer.Properties.Settings.Default, "RecognizedPanelColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.RecognizedGesturePanel.DataBindings.Add(new System.Windows.Forms.Binding("StandardColor", global::GestureRecognizer.Properties.Settings.Default, "RecognizedPanelStandardColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.RecognizedGesturePanel.DataBindings.Add(new System.Windows.Forms.Binding("StartColor", global::GestureRecognizer.Properties.Settings.Default, "RecognizedPanelStartColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.RecognizedGesturePanel.DataBindings.Add(new System.Windows.Forms.Binding("EndColor", global::GestureRecognizer.Properties.Settings.Default, "RecognizedPanelEndColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.RecognizedGesturePanel.DataBindings.Add(new System.Windows.Forms.Binding("Transparency", global::GestureRecognizer.Properties.Settings.Default, "RecognizedPanelTransparency", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.RecognizedGesturePanel.EndColor = global::GestureRecognizer.Properties.Settings.Default.RecognizedPanelEndColor;
            this.RecognizedGesturePanel.Gesture = null;
            this.RecognizedGesturePanel.Location = new System.Drawing.Point(380, 144);
            this.RecognizedGesturePanel.Name = "RecognizedGesturePanel";
            this.RecognizedGesturePanel.Points = new System.Drawing.PointF[0];
            this.RecognizedGesturePanel.Size = new System.Drawing.Size(100, 100);
            this.RecognizedGesturePanel.StandardColor = global::GestureRecognizer.Properties.Settings.Default.RecognizedPanelStandardColor;
            this.RecognizedGesturePanel.StartColor = global::GestureRecognizer.Properties.Settings.Default.RecognizedPanelStartColor;
            this.RecognizedGesturePanel.TabIndex = 5;
            this.RecognizedGesturePanel.Transparency = global::GestureRecognizer.Properties.Settings.Default.RecognizedPanelTransparency;
            // 
            // CurrentGesturePanel
            // 
            this.CurrentGesturePanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.CurrentGesturePanel.BaseColor = global::GestureRecognizer.Properties.Settings.Default.CurrentPanelColor;
            this.CurrentGesturePanel.DataBindings.Add(new System.Windows.Forms.Binding("BaseColor", global::GestureRecognizer.Properties.Settings.Default, "CurrentPanelColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.CurrentGesturePanel.DataBindings.Add(new System.Windows.Forms.Binding("StandardColor", global::GestureRecognizer.Properties.Settings.Default, "CurrentPanelStandardColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.CurrentGesturePanel.DataBindings.Add(new System.Windows.Forms.Binding("StartColor", global::GestureRecognizer.Properties.Settings.Default, "CurrentPanelStartColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.CurrentGesturePanel.DataBindings.Add(new System.Windows.Forms.Binding("EndColor", global::GestureRecognizer.Properties.Settings.Default, "CurrentPanelEndColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.CurrentGesturePanel.DataBindings.Add(new System.Windows.Forms.Binding("Transparency", global::GestureRecognizer.Properties.Settings.Default, "CurrentPanelTransparency", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.CurrentGesturePanel.EndColor = global::GestureRecognizer.Properties.Settings.Default.CurrentPanelEndColor;
            this.CurrentGesturePanel.Gesture = null;
            this.CurrentGesturePanel.Location = new System.Drawing.Point(380, 38);
            this.CurrentGesturePanel.Name = "CurrentGesturePanel";
            this.CurrentGesturePanel.Points = new System.Drawing.PointF[0];
            this.CurrentGesturePanel.Size = new System.Drawing.Size(100, 100);
            this.CurrentGesturePanel.StandardColor = global::GestureRecognizer.Properties.Settings.Default.CurrentPanelStandardColor;
            this.CurrentGesturePanel.StartColor = global::GestureRecognizer.Properties.Settings.Default.CurrentPanelStartColor;
            this.CurrentGesturePanel.TabIndex = 4;
            this.CurrentGesturePanel.Transparency = global::GestureRecognizer.Properties.Settings.Default.CurrentPanelTransparency;
            // 
            // MessageLabel
            // 
            this.MessageLabel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.MessageLabel.BaseColor = global::GestureRecognizer.Properties.Settings.Default.MessageLabelColor;
            this.MessageLabel.DataBindings.Add(new System.Windows.Forms.Binding("Transparency", global::GestureRecognizer.Properties.Settings.Default, "MessageLabelTransparency", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.MessageLabel.DataBindings.Add(new System.Windows.Forms.Binding("BaseColor", global::GestureRecognizer.Properties.Settings.Default, "MessageLabelColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.MessageLabel.DataBindings.Add(new System.Windows.Forms.Binding("StandardColor", global::GestureRecognizer.Properties.Settings.Default, "MessageLabelStandardColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.MessageLabel.DataBindings.Add(new System.Windows.Forms.Binding("ErrorColor", global::GestureRecognizer.Properties.Settings.Default, "MessageLabelErrorColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.MessageLabel.DataBindings.Add(new System.Windows.Forms.Binding("InfoColor", global::GestureRecognizer.Properties.Settings.Default, "MessageLabelInfoColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.MessageLabel.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.MessageLabel.ErrorColor = global::GestureRecognizer.Properties.Settings.Default.MessageLabelErrorColor;
            this.MessageLabel.ForeColor = System.Drawing.Color.Black;
            this.MessageLabel.InfoColor = global::GestureRecognizer.Properties.Settings.Default.MessageLabelInfoColor;
            this.MessageLabel.Location = new System.Drawing.Point(0, 293);
            this.MessageLabel.Name = "MessageLabel";
            this.MessageLabel.Size = new System.Drawing.Size(492, 25);
            this.MessageLabel.StandardColor = global::GestureRecognizer.Properties.Settings.Default.MessageLabelStandardColor;
            this.MessageLabel.TabIndex = 6;
            this.MessageLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.MessageLabel.Transparency = global::GestureRecognizer.Properties.Settings.Default.MessageLabelTransparency;
            // 
            // OpenNetFileDialog
            // 
            this.OpenNetFileDialog.Filter = "Gesture Neural network| *.net, *.xml| All files|*.*";
            // 
            // SaveNetFileDialog
            // 
            this.SaveNetFileDialog.FileName = "gesture_net";
            this.SaveNetFileDialog.Filter = "Gesture Neural network| *.net, *.xml";
            // 
            // Bar
            // 
            this.Bar.Location = new System.Drawing.Point(380, 294);
            this.Bar.Name = "Bar";
            this.Bar.Size = new System.Drawing.Size(100, 20);
            this.Bar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
            this.Bar.TabIndex = 8;
            this.Bar.Visible = false;
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = global::GestureRecognizer.Properties.Settings.Default.MainPanelColor;
            this.ClientSize = new System.Drawing.Size(492, 318);
            this.Controls.Add(this.Bar);
            this.Controls.Add(this.InfoLabel);
            this.Controls.Add(this.RecognizedGesturePanel);
            this.Controls.Add(this.CurrentGesturePanel);
            this.Controls.Add(this.MainMenu);
            this.Controls.Add(this.MessageLabel);
            this.DataBindings.Add(new System.Windows.Forms.Binding("BackColor", global::GestureRecognizer.Properties.Settings.Default, "MainPanelColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.DataBindings.Add(new System.Windows.Forms.Binding("GridHeight", global::GestureRecognizer.Properties.Settings.Default, "MainPanelGridHeight", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.DataBindings.Add(new System.Windows.Forms.Binding("GridPenColor", global::GestureRecognizer.Properties.Settings.Default, "MainPanelGridColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.DataBindings.Add(new System.Windows.Forms.Binding("GridWidth", global::GestureRecognizer.Properties.Settings.Default, "MainPanelGridWidth", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.DataBindings.Add(new System.Windows.Forms.Binding("GestureThickness", global::GestureRecognizer.Properties.Settings.Default, "MainPanelGestureThickness", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.DataBindings.Add(new System.Windows.Forms.Binding("GestureColor", global::GestureRecognizer.Properties.Settings.Default, "MainPanelStandardColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.DataBindings.Add(new System.Windows.Forms.Binding("PointsColor", global::GestureRecognizer.Properties.Settings.Default, "MainPanelPointsColor", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this.GestureColor = global::GestureRecognizer.Properties.Settings.Default.MainPanelStandardColor;
            this.GestureThickness = global::GestureRecognizer.Properties.Settings.Default.MainPanelGestureThickness;
            this.GridHeight = global::GestureRecognizer.Properties.Settings.Default.MainPanelGridHeight;
            this.GridPenColor = global::GestureRecognizer.Properties.Settings.Default.MainPanelGridColor;
            this.GridWidth = global::GestureRecognizer.Properties.Settings.Default.MainPanelGridWidth;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MainMenuStrip = this.MainMenu;
            this.MinimumSize = new System.Drawing.Size(500, 350);
            this.Name = "MainForm";
            this.PointsColor = global::GestureRecognizer.Properties.Settings.Default.MainPanelPointsColor;
            this.Text = "Gesture recognizer";
            this.GestureDrawn += new GestureRecognizer.OnGestureDrawnDelegate(this.MainForm_GestureDrawn);
            this.MainMenu.ResumeLayout(false);
            this.MainMenu.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

		}

		#endregion

		private System.Windows.Forms.MenuStrip MainMenu;
		private System.Windows.Forms.ToolStripMenuItem FileToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem SettingsToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem NeuralNetToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem HelpToolStripMenuItem;
		private GesturePanel CurrentGesturePanel;
		private GesturePanel RecognizedGesturePanel;
		private GestureRecognizer.TransparentLabel MessageLabel;
		private GestureRecognizer.TransparentLabel InfoLabel;
		private System.Windows.Forms.ToolStripMenuItem SaveGesturesToolStripMenuItem;
		private System.Windows.Forms.ToolStripSeparator toolStripMenuItem3;
		private System.Windows.Forms.ToolStripMenuItem ExitToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem ReloadGesturesToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem ChangeSettingsToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem ManageGesturesToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem TrainToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem VerifyToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem AboutToolStripMenuItem;
		private System.Windows.Forms.OpenFileDialog OpenNetFileDialog;
		private System.Windows.Forms.SaveFileDialog SaveNetFileDialog;
		private System.Windows.Forms.ProgressBar Bar;
		private System.Windows.Forms.ToolStripMenuItem NeuralNetSettingsToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem PerformancesToolStripMenuItem;
		private System.Windows.Forms.ToolStripMenuItem ThresholdsToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem validateToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem testToolStripMenuItem;
	}
}

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