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

📄 configurationui.designer.cs

📁 Fuzzy logic controller that uses mamdani logic.
💻 CS
字号:
namespace FuzzyLogicUI.Controls
{
    partial class ConfigurationUI
    {
        /// <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 Component 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.groupBox1 = new System.Windows.Forms.GroupBox();
            this.DefuzCombo = new System.Windows.Forms.ComboBox();
            this.ImplCombo = new System.Windows.Forms.ComboBox();
            this.AndCombo = new System.Windows.Forms.ComboBox();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.DefuzCombo);
            this.groupBox1.Controls.Add(this.ImplCombo);
            this.groupBox1.Controls.Add(this.AndCombo);
            this.groupBox1.Controls.Add(this.label4);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Location = new System.Drawing.Point(10, 190);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(405, 153);
            this.groupBox1.TabIndex = 3;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Properties";
            // 
            // DefuzCombo
            // 
            this.DefuzCombo.FormattingEnabled = true;
            this.DefuzCombo.Items.AddRange(new object[] {
            "Modified Heigh Defuzzification",
            "Centroid"});
            this.DefuzCombo.Location = new System.Drawing.Point(149, 101);
            this.DefuzCombo.Name = "DefuzCombo";
            this.DefuzCombo.Size = new System.Drawing.Size(175, 21);
            this.DefuzCombo.TabIndex = 5;
            this.DefuzCombo.SelectedIndexChanged += new System.EventHandler(this.DefuzCombo_SelectedIndexChanged);
            // 
            // ImplCombo
            // 
            this.ImplCombo.FormattingEnabled = true;
            this.ImplCombo.Items.AddRange(new object[] {
            "Min",
            "Prod"});
            this.ImplCombo.Location = new System.Drawing.Point(149, 60);
            this.ImplCombo.Name = "ImplCombo";
            this.ImplCombo.Size = new System.Drawing.Size(146, 21);
            this.ImplCombo.TabIndex = 4;
            this.ImplCombo.SelectedIndexChanged += new System.EventHandler(this.ImplCombo_SelectedIndexChanged);
            // 
            // AndCombo
            // 
            this.AndCombo.FormattingEnabled = true;
            this.AndCombo.Items.AddRange(new object[] {
            "Min",
            "Prod"});
            this.AndCombo.Location = new System.Drawing.Point(149, 24);
            this.AndCombo.Name = "AndCombo";
            this.AndCombo.Size = new System.Drawing.Size(146, 21);
            this.AndCombo.TabIndex = 3;
            this.AndCombo.SelectedIndexChanged += new System.EventHandler(this.AndCombo_SelectedIndexChanged);
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(13, 110);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(116, 13);
            this.label4.TabIndex = 2;
            this.label4.Text = "Defuzzification Method";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(10, 69);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(97, 13);
            this.label3.TabIndex = 1;
            this.label3.Text = "Implication Method";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(7, 32);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(65, 13);
            this.label2.TabIndex = 0;
            this.label2.Text = "And Method";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Tempus Sans ITC", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(3, 17);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(633, 38);
            this.label1.TabIndex = 2;
            this.label1.Text = "The Fuzzinator : A Fuzzy Logic Controller Interface";
            // 
            // ConfigurationUI
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.ButtonHighlight;
            this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.label1);
            this.Name = "ConfigurationUI";
            this.Size = new System.Drawing.Size(893, 510);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.ComboBox DefuzCombo;
        private System.Windows.Forms.ComboBox ImplCombo;
        private System.Windows.Forms.ComboBox AndCombo;
    }
}

⌨️ 快捷键说明

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