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

📄 trigonometricfunction.designer.cs

📁 Visual C#2005程序设计教程
💻 CS
字号:
namespace WinCtrlLib11_1创建ActiveX控件
{
    partial class TrigonometricFunction
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region 组件设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.lblInfo = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.txtValue = new System.Windows.Forms.TextBox();
            this.txtResult = new System.Windows.Forms.TextBox();
            this.radSin = new System.Windows.Forms.RadioButton();
            this.radCos = new System.Windows.Forms.RadioButton();
            this.radTan = new System.Windows.Forms.RadioButton();
            this.radCot = new System.Windows.Forms.RadioButton();
            this.btnOK = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // lblInfo
            // 
            this.lblInfo.AutoSize = true;
            this.lblInfo.Location = new System.Drawing.Point(28, 33);
            this.lblInfo.Name = "lblInfo";
            this.lblInfo.Size = new System.Drawing.Size(31, 15);
            this.lblInfo.TabIndex = 0;
            this.lblInfo.Text = "sin";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(179, 33);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(15, 15);
            this.label2.TabIndex = 1;
            this.label2.Text = "=";
            // 
            // txtValue
            // 
            this.txtValue.Location = new System.Drawing.Point(62, 33);
            this.txtValue.Name = "txtValue";
            this.txtValue.Size = new System.Drawing.Size(114, 25);
            this.txtValue.TabIndex = 2;
            // 
            // txtResult
            // 
            this.txtResult.Location = new System.Drawing.Point(200, 30);
            this.txtResult.Name = "txtResult";
            this.txtResult.Size = new System.Drawing.Size(114, 25);
            this.txtResult.TabIndex = 3;
            // 
            // radSin
            // 
            this.radSin.AutoSize = true;
            this.radSin.Checked = true;
            this.radSin.Location = new System.Drawing.Point(25, 76);
            this.radSin.Name = "radSin";
            this.radSin.Size = new System.Drawing.Size(52, 19);
            this.radSin.TabIndex = 4;
            this.radSin.TabStop = true;
            this.radSin.Text = "sin";
            this.radSin.UseVisualStyleBackColor = true;
            this.radSin.CheckedChanged += new System.EventHandler(this.radSin_CheckedChanged);
            // 
            // radCos
            // 
            this.radCos.AutoSize = true;
            this.radCos.Location = new System.Drawing.Point(102, 76);
            this.radCos.Name = "radCos";
            this.radCos.Size = new System.Drawing.Size(52, 19);
            this.radCos.TabIndex = 5;
            this.radCos.Text = "cos";
            this.radCos.UseVisualStyleBackColor = true;
            this.radCos.CheckedChanged += new System.EventHandler(this.radCos_CheckedChanged);
            // 
            // radTan
            // 
            this.radTan.AutoSize = true;
            this.radTan.Location = new System.Drawing.Point(179, 76);
            this.radTan.Name = "radTan";
            this.radTan.Size = new System.Drawing.Size(52, 19);
            this.radTan.TabIndex = 6;
            this.radTan.Text = "tan";
            this.radTan.UseVisualStyleBackColor = true;
            this.radTan.CheckedChanged += new System.EventHandler(this.radTan_CheckedChanged);
            // 
            // radCot
            // 
            this.radCot.AutoSize = true;
            this.radCot.Location = new System.Drawing.Point(256, 76);
            this.radCot.Name = "radCot";
            this.radCot.Size = new System.Drawing.Size(52, 19);
            this.radCot.TabIndex = 7;
            this.radCot.Text = "cot";
            this.radCot.UseVisualStyleBackColor = true;
            this.radCot.CheckedChanged += new System.EventHandler(this.radCot_CheckedChanged);
            // 
            // btnOK
            // 
            this.btnOK.Location = new System.Drawing.Point(59, 111);
            this.btnOK.Name = "btnOK";
            this.btnOK.Size = new System.Drawing.Size(75, 38);
            this.btnOK.TabIndex = 8;
            this.btnOK.Text = "确定";
            this.btnOK.UseVisualStyleBackColor = true;
            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
            // 
            // btnCancel
            // 
            this.btnCancel.Location = new System.Drawing.Point(209, 111);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(75, 38);
            this.btnCancel.TabIndex = 9;
            this.btnCancel.Text = "取消";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // TrigonometricFunction
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.btnCancel);
            this.Controls.Add(this.btnOK);
            this.Controls.Add(this.radCot);
            this.Controls.Add(this.radTan);
            this.Controls.Add(this.radCos);
            this.Controls.Add(this.radSin);
            this.Controls.Add(this.txtResult);
            this.Controls.Add(this.txtValue);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.lblInfo);
            this.Name = "TrigonometricFunction";
            this.Size = new System.Drawing.Size(343, 169);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label lblInfo;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.TextBox txtValue;
        private System.Windows.Forms.TextBox txtResult;
        private System.Windows.Forms.RadioButton radSin;
        private System.Windows.Forms.RadioButton radCos;
        private System.Windows.Forms.RadioButton radTan;
        private System.Windows.Forms.RadioButton radCot;
        private System.Windows.Forms.Button btnOK;
        private System.Windows.Forms.Button btnCancel;
    }
}

⌨️ 快捷键说明

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