AvgCutImage.FmMain.InitializeComponent C# (CSharp) Méthode

InitializeComponent() private méthode

设计器支持所需的方法 - 不要 使用代码编辑器修改此方法的内容。
private InitializeComponent ( ) : void
Résultat void
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FmMain));
            this.btSelectImage = new System.Windows.Forms.Button();
            this.tbImagePath = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.numCutCells = new System.Windows.Forms.NumericUpDown();
            this.numCutRows = new System.Windows.Forms.NumericUpDown();
            this.label3 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.btCut = new System.Windows.Forms.Button();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            ((System.ComponentModel.ISupportInitialize)(this.numCutCells)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numCutRows)).BeginInit();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // btSelectImage
            // 
            this.btSelectImage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btSelectImage.Location = new System.Drawing.Point(194, 12);
            this.btSelectImage.Name = "btSelectImage";
            this.btSelectImage.Size = new System.Drawing.Size(40, 23);
            this.btSelectImage.TabIndex = 0;
            this.btSelectImage.Text = "选择";
            this.btSelectImage.UseVisualStyleBackColor = true;
            this.btSelectImage.Click += new System.EventHandler(this.btSelectImage_Click);
            // 
            // tbImagePath
            // 
            this.tbImagePath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tbImagePath.Location = new System.Drawing.Point(68, 12);
            this.tbImagePath.Name = "tbImagePath";
            this.tbImagePath.ReadOnly = true;
            this.tbImagePath.Size = new System.Drawing.Size(120, 21);
            this.tbImagePath.TabIndex = 1;
            this.tbImagePath.Click += new System.EventHandler(this.tbImagePath_Click);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(9, 15);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(53, 12);
            this.label1.TabIndex = 2;
            this.label1.Text = "选择图片";
            // 
            // numCutCells
            // 
            this.numCutCells.Location = new System.Drawing.Point(43, 48);
            this.numCutCells.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.numCutCells.Name = "numCutCells";
            this.numCutCells.Size = new System.Drawing.Size(43, 21);
            this.numCutCells.TabIndex = 6;
            this.numCutCells.Value = new decimal(new int[] {
            4,
            0,
            0,
            0});
            // 
            // numCutRows
            // 
            this.numCutRows.Location = new System.Drawing.Point(43, 21);
            this.numCutRows.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.numCutRows.Name = "numCutRows";
            this.numCutRows.Size = new System.Drawing.Size(43, 21);
            this.numCutRows.TabIndex = 7;
            this.numCutRows.Value = new decimal(new int[] {
            4,
            0,
            0,
            0});
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(13, 23);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(29, 12);
            this.label3.TabIndex = 5;
            this.label3.Text = "行:";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(13, 50);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(29, 12);
            this.label4.TabIndex = 5;
            this.label4.Text = "列:";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.btCut);
            this.groupBox1.Controls.Add(this.numCutCells);
            this.groupBox1.Controls.Add(this.numCutRows);
            this.groupBox1.Controls.Add(this.label4);
            this.groupBox1.Location = new System.Drawing.Point(127, 41);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(107, 113);
            this.groupBox1.TabIndex = 8;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "图片切割成";
            // 
            // btCut
            // 
            this.btCut.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btCut.Location = new System.Drawing.Point(15, 80);
            this.btCut.Name = "btCut";
            this.btCut.Size = new System.Drawing.Size(75, 23);
            this.btCut.TabIndex = 9;
            this.btCut.Text = "切割";
            this.btCut.UseVisualStyleBackColor = true;
            this.btCut.Click += new System.EventHandler(this.btCut_Click);
            // 
            // pictureBox1
            // 
            this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
            this.pictureBox1.Location = new System.Drawing.Point(14, 51);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(100, 100);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pictureBox1.TabIndex = 10;
            this.pictureBox1.TabStop = false;
            this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
            // 
            // FmMain
            // 
            this.AcceptButton = this.btCut;
            this.AllowDrop = true;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(249, 171);
            this.Controls.Add(this.pictureBox1);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.tbImagePath);
            this.Controls.Add(this.btSelectImage);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.Name = "FmMain";
            this.Text = "平均切割图片";
            this.DragDrop += new System.Windows.Forms.DragEventHandler(this.FmMain_DragDrop);
            this.DragEnter += new System.Windows.Forms.DragEventHandler(this.FmMain_DragEnter);
            ((System.ComponentModel.ISupportInitialize)(this.numCutCells)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numCutRows)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }