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

📄 formabout.designer.cs

📁 这是用VC编写的一个关于计算器的代码
💻 CS
字号:
namespace ProgramCalculator
{
    partial class FormAbout
    {
        /// <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 Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.labelUnderWrite = new System.Windows.Forms.Label();
            this.linkLabelEmail = new System.Windows.Forms.LinkLabel();
            this.linkLabelBlog = new System.Windows.Forms.LinkLabel();
            this.SuspendLayout();
            // 
            // labelUnderWrite
            // 
            this.labelUnderWrite.AutoSize = true;
            this.labelUnderWrite.Enabled = false;
            this.labelUnderWrite.Location = new System.Drawing.Point(283, 233);
            this.labelUnderWrite.Name = "labelUnderWrite";
            this.labelUnderWrite.Size = new System.Drawing.Size(29, 12);
            this.labelUnderWrite.TabIndex = 0;
            this.labelUnderWrite.Text = "签名";
            // 
            // linkLabelEmail
            // 
            this.linkLabelEmail.AutoSize = true;
            this.linkLabelEmail.Location = new System.Drawing.Point(12, 245);
            this.linkLabelEmail.Name = "linkLabelEmail";
            this.linkLabelEmail.Size = new System.Drawing.Size(191, 12);
            this.linkLabelEmail.TabIndex = 1;
            this.linkLabelEmail.TabStop = true;
            this.linkLabelEmail.Text = "mailto:yinhui_zhou@yahoo.com.cn";
            this.linkLabelEmail.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelEmail_LinkClicked);
            // 
            // linkLabelBlog
            // 
            this.linkLabelBlog.AutoSize = true;
            this.linkLabelBlog.Location = new System.Drawing.Point(12, 233);
            this.linkLabelBlog.Name = "linkLabelBlog";
            this.linkLabelBlog.Size = new System.Drawing.Size(197, 12);
            this.linkLabelBlog.TabIndex = 1;
            this.linkLabelBlog.TabStop = true;
            this.linkLabelBlog.Text = "http://blog.csdn.net/zhouyinhui/";
            this.linkLabelBlog.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelEmail_LinkClicked);
            // 
            // FormAbout
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.AntiqueWhite;
            this.ClientSize = new System.Drawing.Size(424, 266);
            this.Controls.Add(this.linkLabelBlog);
            this.Controls.Add(this.linkLabelEmail);
            this.Controls.Add(this.labelUnderWrite);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FormAbout";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "关于";
            this.Paint += new System.Windows.Forms.PaintEventHandler(this.FormAbout_Paint);
            this.Load += new System.EventHandler(this.FormAbout_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label labelUnderWrite;
        private System.Windows.Forms.LinkLabel linkLabelEmail;
        private System.Windows.Forms.LinkLabel linkLabelBlog;
    }
}

⌨️ 快捷键说明

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