⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmmain.designer.cs

📁 application som kohonen , pour une classification de couleur et voir l application de l algorithme
💻 CS
📖 第 1 页 / 共 4 页
字号:
namespace SOFMTest
{
    partial class frmMain
    {
        /// <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.components = new System.ComponentModel.Container();
            this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.gbInputParams = new System.Windows.Forms.GroupBox();
            this.lblActivationFunctionType = new System.Windows.Forms.Label();
            this.rbFrenchHat = new System.Windows.Forms.RadioButton();
            this.rbMexicanHat = new System.Windows.Forms.RadioButton();
            this.rbGaussFunction = new System.Windows.Forms.RadioButton();
            this.rbDiscreteFunction = new System.Windows.Forms.RadioButton();
            this.tbEpsilon = new System.Windows.Forms.TextBox();
            this.tbIterationsNumber = new System.Windows.Forms.TextBox();
            this.tbNumberOfCards = new System.Windows.Forms.TextBox();
            this.lblIterationNumberCaption = new System.Windows.Forms.Label();
            this.lblNamberOfCardsCaption = new System.Windows.Forms.Label();
            this.chbNormalize = new System.Windows.Forms.CheckBox();
            this.btnLoadDataAndCreateNetwork = new System.Windows.Forms.Button();
            this.gbPatterns = new System.Windows.Forms.GroupBox();
            this.lbPatterns = new System.Windows.Forms.ListBox();
            this.gbKohonen = new System.Windows.Forms.GroupBox();
            this.panelLegend = new System.Windows.Forms.Panel();
            this.statusStrip = new System.Windows.Forms.StatusStrip();
            this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel();
            this.pbStatus = new System.Windows.Forms.ToolStripProgressBar();
            this.chbVisualization = new System.Windows.Forms.CheckBox();
            this.outputDataChart = new Steema.TeeChart.TChart();
            this.inputDataChart = new Steema.TeeChart.TChart();
            this.toolTip = new System.Windows.Forms.ToolTip(this.components);
            this.sofmVisualizer = new SOFMTest.SOFMVisualizer();
            this.points2 = new Steema.TeeChart.Styles.Points();
            this.points3 = new Steema.TeeChart.Styles.Points();
            this.points1 = new Steema.TeeChart.Styles.Points();
            this.points4 = new Steema.TeeChart.Styles.Points();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.gbInputParams.SuspendLayout();
            this.gbPatterns.SuspendLayout();
            this.gbKohonen.SuspendLayout();
            this.statusStrip.SuspendLayout();
            this.SuspendLayout();
            // 
            // errorProvider
            // 
            this.errorProvider.ContainerControl = this;
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.Location = new System.Drawing.Point(0, 0);
            this.splitContainer1.Margin = new System.Windows.Forms.Padding(0);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.gbInputParams);
            this.splitContainer1.Panel1.Controls.Add(this.gbPatterns);
            this.splitContainer1.Panel1.Margin = new System.Windows.Forms.Padding(3);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.gbKohonen);
            this.splitContainer1.Size = new System.Drawing.Size(940, 701);
            this.splitContainer1.SplitterDistance = 296;
            this.splitContainer1.TabIndex = 1;
            // 
            // gbInputParams
            // 
            this.gbInputParams.Controls.Add(this.lblActivationFunctionType);
            this.gbInputParams.Controls.Add(this.rbFrenchHat);
            this.gbInputParams.Controls.Add(this.rbMexicanHat);
            this.gbInputParams.Controls.Add(this.rbGaussFunction);
            this.gbInputParams.Controls.Add(this.rbDiscreteFunction);
            this.gbInputParams.Controls.Add(this.tbEpsilon);
            this.gbInputParams.Controls.Add(this.tbIterationsNumber);
            this.gbInputParams.Controls.Add(this.tbNumberOfCards);
            this.gbInputParams.Controls.Add(this.lblIterationNumberCaption);
            this.gbInputParams.Controls.Add(this.lblNamberOfCardsCaption);
            this.gbInputParams.Controls.Add(this.chbNormalize);
            this.gbInputParams.Controls.Add(this.btnLoadDataAndCreateNetwork);
            this.gbInputParams.Dock = System.Windows.Forms.DockStyle.Top;
            this.gbInputParams.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.gbInputParams.Location = new System.Drawing.Point(0, 0);
            this.gbInputParams.Name = "gbInputParams";
            this.gbInputParams.Size = new System.Drawing.Size(296, 294);
            this.gbInputParams.TabIndex = 0;
            this.gbInputParams.TabStop = false;
            this.gbInputParams.Text = "Input data";
            // 
            // lblActivationFunctionType
            // 
            this.lblActivationFunctionType.AutoSize = true;
            this.lblActivationFunctionType.Location = new System.Drawing.Point(25, 67);
            this.lblActivationFunctionType.Name = "lblActivationFunctionType";
            this.lblActivationFunctionType.Size = new System.Drawing.Size(195, 13);
            this.lblActivationFunctionType.TabIndex = 2;
            this.lblActivationFunctionType.Text = "Select the type of an activation function";
            // 
            // rbFrenchHat
            // 
            this.rbFrenchHat.AutoSize = true;
            this.rbFrenchHat.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.rbFrenchHat.Location = new System.Drawing.Point(28, 155);
            this.rbFrenchHat.Name = "rbFrenchHat";
            this.rbFrenchHat.Size = new System.Drawing.Size(75, 17);
            this.rbFrenchHat.TabIndex = 6;
            this.rbFrenchHat.Tag = "3";
            this.rbFrenchHat.Text = "Franch hat";
            this.rbFrenchHat.UseVisualStyleBackColor = true;
            // 
            // rbMexicanHat
            // 
            this.rbMexicanHat.AutoSize = true;
            this.rbMexicanHat.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.rbMexicanHat.Location = new System.Drawing.Point(28, 132);
            this.rbMexicanHat.Name = "rbMexicanHat";
            this.rbMexicanHat.Size = new System.Drawing.Size(82, 17);
            this.rbMexicanHat.TabIndex = 5;
            this.rbMexicanHat.Tag = "2";
            this.rbMexicanHat.Text = "Mexican hat";
            this.rbMexicanHat.UseVisualStyleBackColor = true;
            // 
            // rbGaussFunction
            // 
            this.rbGaussFunction.AutoSize = true;
            this.rbGaussFunction.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.rbGaussFunction.Location = new System.Drawing.Point(28, 109);
            this.rbGaussFunction.Name = "rbGaussFunction";
            this.rbGaussFunction.Size = new System.Drawing.Size(95, 17);
            this.rbGaussFunction.TabIndex = 4;
            this.rbGaussFunction.Tag = "1";
            this.rbGaussFunction.Text = "Gauss function";
            this.rbGaussFunction.UseVisualStyleBackColor = true;
            // 
            // rbDiscreteFunction
            // 
            this.rbDiscreteFunction.AutoSize = true;
            this.rbDiscreteFunction.Checked = true;
            this.rbDiscreteFunction.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.rbDiscreteFunction.Location = new System.Drawing.Point(28, 86);
            this.rbDiscreteFunction.Name = "rbDiscreteFunction";
            this.rbDiscreteFunction.Size = new System.Drawing.Size(104, 17);
            this.rbDiscreteFunction.TabIndex = 3;
            this.rbDiscreteFunction.TabStop = true;
            this.rbDiscreteFunction.Tag = "0";
            this.rbDiscreteFunction.Text = "Discrete function";
            this.rbDiscreteFunction.UseVisualStyleBackColor = true;
            // 
            // tbEpsilon
            // 
            this.tbEpsilon.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tbEpsilon.Location = new System.Drawing.Point(121, 203);
            this.tbEpsilon.Name = "tbEpsilon";
            this.tbEpsilon.Size = new System.Drawing.Size(58, 20);
            this.tbEpsilon.TabIndex = 9;
            this.tbEpsilon.Text = "0.0000001";
            this.tbEpsilon.Validating += new System.ComponentModel.CancelEventHandler(this.tb_Validating);
            // 
            // tbIterationsNumber
            // 
            this.tbIterationsNumber.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tbIterationsNumber.Location = new System.Drawing.Point(28, 203);
            this.tbIterationsNumber.Name = "tbIterationsNumber";
            this.tbIterationsNumber.Size = new System.Drawing.Size(58, 20);
            this.tbIterationsNumber.TabIndex = 8;
            this.tbIterationsNumber.Text = "100";
            this.tbIterationsNumber.Validating += new System.ComponentModel.CancelEventHandler(this.tb_Validating);
            // 
            // tbNumberOfCards
            // 
            this.tbNumberOfCards.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tbNumberOfCards.Location = new System.Drawing.Point(28, 35);
            this.tbNumberOfCards.Name = "tbNumberOfCards";
            this.tbNumberOfCards.Size = new System.Drawing.Size(203, 20);
            this.tbNumberOfCards.TabIndex = 1;
            this.tbNumberOfCards.Text = "64";
            this.tbNumberOfCards.Validating += new System.ComponentModel.CancelEventHandler(this.tb_Validating);
            // 
            // lblIterationNumberCaption
            // 
            this.lblIterationNumberCaption.AutoSize = true;
            this.lblIterationNumberCaption.Location = new System.Drawing.Point(25, 187);
            this.lblIterationNumberCaption.Name = "lblIterationNumberCaption";
            this.lblIterationNumberCaption.Size = new System.Drawing.Size(150, 13);
            this.lblIterationNumberCaption.TabIndex = 7;
            this.lblIterationNumberCaption.Text = "Number of iterations or Epsilon";
            // 
            // lblNamberOfCardsCaption
            // 
            this.lblNamberOfCardsCaption.AutoSize = true;
            this.lblNamberOfCardsCaption.Location = new System.Drawing.Point(25, 19);
            this.lblNamberOfCardsCaption.Name = "lblNamberOfCardsCaption";
            this.lblNamberOfCardsCaption.Size = new System.Drawing.Size(186, 13);
            this.lblNamberOfCardsCaption.TabIndex = 0;
            this.lblNamberOfCardsCaption.Text = "The number of neurons in output layer";
            // 
            // chbNormalize
            // 
            this.chbNormalize.AutoSize = true;
            this.chbNormalize.Checked = true;
            this.chbNormalize.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chbNormalize.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.chbNormalize.Location = new System.Drawing.Point(28, 229);
            this.chbNormalize.Name = "chbNormalize";
            this.chbNormalize.Size = new System.Drawing.Size(119, 17);
            this.chbNormalize.TabIndex = 10;
            this.chbNormalize.Text = "Normalize input data";
            this.chbNormalize.UseVisualStyleBackColor = true;
            // 
            // btnLoadDataAndCreateNetwork
            // 
            this.btnLoadDataAndCreateNetwork.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnLoadDataAndCreateNetwork.Location = new System.Drawing.Point(6, 252);
            this.btnLoadDataAndCreateNetwork.Name = "btnLoadDataAndCreateNetwork";
            this.btnLoadDataAndCreateNetwork.Size = new System.Drawing.Size(283, 23);
            this.btnLoadDataAndCreateNetwork.TabIndex = 11;
            this.btnLoadDataAndCreateNetwork.Text = "Load data and form the map...";
            this.btnLoadDataAndCreateNetwork.UseVisualStyleBackColor = true;
            this.btnLoadDataAndCreateNetwork.Click += new System.EventHandler(this.btnLoadDataAndCreateNetwork_Click);
            // 
            // gbPatterns
            // 
            this.gbPatterns.Controls.Add(this.lbPatterns);
            this.gbPatterns.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.gbPatterns.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.gbPatterns.Location = new System.Drawing.Point(0, 300);
            this.gbPatterns.Name = "gbPatterns";
            this.gbPatterns.Size = new System.Drawing.Size(296, 401);
            this.gbPatterns.TabIndex = 1;
            this.gbPatterns.TabStop = false;
            this.gbPatterns.Text = "Input vectors";
            // 
            // lbPatterns
            // 
            this.lbPatterns.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.lbPatterns.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lbPatterns.FormattingEnabled = true;
            this.lbPatterns.Location = new System.Drawing.Point(3, 16);
            this.lbPatterns.Name = "lbPatterns";
            this.lbPatterns.Size = new System.Drawing.Size(290, 379);
            this.lbPatterns.TabIndex = 0;
            this.lbPatterns.Leave += new System.EventHandler(this.lbPatterns_Leave);
            this.lbPatterns.SelectedIndexChanged += new System.EventHandler(this.lbPatterns_SelectedIndexChanged);
            // 
            // gbKohonen
            // 
            this.gbKohonen.AutoSize = true;
            this.gbKohonen.Controls.Add(this.panelLegend);
            this.gbKohonen.Controls.Add(this.sofmVisualizer);
            this.gbKohonen.Controls.Add(this.statusStrip);
            this.gbKohonen.Controls.Add(this.chbVisualization);
            this.gbKohonen.Controls.Add(this.outputDataChart);
            this.gbKohonen.Controls.Add(this.inputDataChart);
            this.gbKohonen.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gbKohonen.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.gbKohonen.Location = new System.Drawing.Point(0, 0);
            this.gbKohonen.Name = "gbKohonen";
            this.gbKohonen.Size = new System.Drawing.Size(640, 701);
            this.gbKohonen.TabIndex = 0;
            this.gbKohonen.TabStop = false;
            this.gbKohonen.Text = "Kohonen map";
            // 
            // panelLegend
            // 
            this.panelLegend.AutoSize = true;
            this.panelLegend.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.panelLegend.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panelLegend.Location = new System.Drawing.Point(412, 281);
            this.panelLegend.Name = "panelLegend";
            this.panelLegend.Size = new System.Drawing.Size(2, 2);
            this.panelLegend.TabIndex = 5;
            this.panelLegend.Visible = false;
            // 
            // statusStrip
            // 
            this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.lblStatus,
            this.pbStatus});
            this.statusStrip.Location = new System.Drawing.Point(3, 676);
            this.statusStrip.Name = "statusStrip";
            this.statusStrip.Size = new System.Drawing.Size(634, 22);
            this.statusStrip.TabIndex = 3;
            // 
            // lblStatus
            // 
            this.lblStatus.Name = "lblStatus";
            this.lblStatus.Size = new System.Drawing.Size(0, 17);
            // 
            // pbStatus
            // 
            this.pbStatus.Name = "pbStatus";
            this.pbStatus.Size = new System.Drawing.Size(100, 16);
            this.pbStatus.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
            this.pbStatus.Visible = false;
            // 
            // chbVisualization
            // 
            this.chbVisualization.AutoSize = true;
            this.chbVisualization.Checked = true;
            this.chbVisualization.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chbVisualization.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.chbVisualization.Location = new System.Drawing.Point(6, 537);
            this.chbVisualization.Name = "chbVisualization";
            this.chbVisualization.Size = new System.Drawing.Size(81, 17);
            this.chbVisualization.TabIndex = 2;
            this.chbVisualization.Text = "Visualization";
            this.toolTip.SetToolTip(this.chbVisualization, "Uncheck it to speed up calculations");
            this.chbVisualization.UseVisualStyleBackColor = true;
            this.chbVisualization.CheckedChanged += new System.EventHandler(this.chbVisualization_CheckedChanged);
            // 
            // outputDataChart
            // 
            // 
            // 
            // 
            this.outputDataChart.Aspect.ElevationFloat = 345;
            this.outputDataChart.Aspect.RotationFloat = 345;
            this.outputDataChart.Aspect.View3D = false;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -