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

📄 paragraphform.designer.cs

📁 在CSharpNotepad中可以创建和编辑简单文本文档
💻 CS
字号:
namespace CSharpNotepad
{
    partial class paragraphForm
    {
        /// <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()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(paragraphForm));
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.tbRight = new System.Windows.Forms.TextBox();
            this.tbLeft = new System.Windows.Forms.TextBox();
            this.tbFirstLine = new System.Windows.Forms.TextBox();
            this.labelRight = new System.Windows.Forms.Label();
            this.labelFirstLine = new System.Windows.Forms.Label();
            this.labelLeft = new System.Windows.Forms.Label();
            this.cancelButton = new System.Windows.Forms.Button();
            this.okButton = new System.Windows.Forms.Button();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.tbRight);
            this.groupBox1.Controls.Add(this.tbLeft);
            this.groupBox1.Controls.Add(this.tbFirstLine);
            this.groupBox1.Controls.Add(this.labelRight);
            this.groupBox1.Controls.Add(this.labelFirstLine);
            this.groupBox1.Controls.Add(this.labelLeft);
            this.groupBox1.Location = new System.Drawing.Point(12, 12);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(160, 112);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "缩进";
            // 
            // tbRight
            // 
            this.tbRight.Location = new System.Drawing.Point(73, 49);
            this.tbRight.MaxLength = 3;
            this.tbRight.Name = "tbRight";
            this.tbRight.Size = new System.Drawing.Size(72, 21);
            this.tbRight.TabIndex = 1;
            this.tbRight.Text = "0";
            // 
            // tbLeft
            // 
            this.tbLeft.Location = new System.Drawing.Point(73, 20);
            this.tbLeft.MaxLength = 3;
            this.tbLeft.Name = "tbLeft";
            this.tbLeft.Size = new System.Drawing.Size(72, 21);
            this.tbLeft.TabIndex = 0;
            this.tbLeft.Text = "0";
            // 
            // tbFirstLine
            // 
            this.tbFirstLine.Location = new System.Drawing.Point(73, 78);
            this.tbFirstLine.MaxLength = 3;
            this.tbFirstLine.Name = "tbFirstLine";
            this.tbFirstLine.Size = new System.Drawing.Size(72, 21);
            this.tbFirstLine.TabIndex = 2;
            this.tbFirstLine.Text = "0";
            // 
            // labelRight
            // 
            this.labelRight.Location = new System.Drawing.Point(10, 51);
            this.labelRight.Name = "labelRight";
            this.labelRight.Size = new System.Drawing.Size(56, 16);
            this.labelRight.TabIndex = 2;
            this.labelRight.Text = "右(&R):";
            // 
            // labelFirstLine
            // 
            this.labelFirstLine.Location = new System.Drawing.Point(10, 80);
            this.labelFirstLine.Name = "labelFirstLine";
            this.labelFirstLine.Size = new System.Drawing.Size(61, 19);
            this.labelFirstLine.TabIndex = 0;
            this.labelFirstLine.Text = "首行(&F):";
            // 
            // labelLeft
            // 
            this.labelLeft.Location = new System.Drawing.Point(10, 22);
            this.labelLeft.Name = "labelLeft";
            this.labelLeft.Size = new System.Drawing.Size(48, 16);
            this.labelLeft.TabIndex = 1;
            this.labelLeft.Text = "左(&L):";
            // 
            // cancelButton
            // 
            this.cancelButton.Location = new System.Drawing.Point(185, 59);
            this.cancelButton.Name = "cancelButton";
            this.cancelButton.Size = new System.Drawing.Size(75, 23);
            this.cancelButton.TabIndex = 4;
            this.cancelButton.Text = "取消";
            this.cancelButton.UseVisualStyleBackColor = true;
            this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
            // 
            // okButton
            // 
            this.okButton.Location = new System.Drawing.Point(185, 29);
            this.okButton.Name = "okButton";
            this.okButton.Size = new System.Drawing.Size(75, 23);
            this.okButton.TabIndex = 3;
            this.okButton.Text = "确定";
            this.okButton.UseVisualStyleBackColor = true;
            this.okButton.Click += new System.EventHandler(this.okButton_Click);
            // 
            // paragraphForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(272, 146);
            this.Controls.Add(this.cancelButton);
            this.Controls.Add(this.okButton);
            this.Controls.Add(this.groupBox1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "paragraphForm";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "段落";
            this.Load += new System.EventHandler(this.paragraphForm_Load);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.TextBox tbRight;
        private System.Windows.Forms.TextBox tbLeft;
        private System.Windows.Forms.TextBox tbFirstLine;
        private System.Windows.Forms.Label labelRight;
        private System.Windows.Forms.Label labelLeft;
        private System.Windows.Forms.Label labelFirstLine;
        private System.Windows.Forms.Button cancelButton;
        private System.Windows.Forms.Button okButton;
    }
}

⌨️ 快捷键说明

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