Newer
Older
GHFX_REFACTOR / PATM_Forms / F_PATMfiles.designer.cs
wxn on 9 Nov 2016 5 KB 冗余代码整理
using System.ComponentModel;
using System.Windows.Forms;

namespace Cyberpipe.PATM_Forms
{
    partial class F_PATMFiles
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private 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 Windows Form 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.LV_PATMfileDir = new System.Windows.Forms.ListView();
            this.LB_PATMfilename = new System.Windows.Forms.Label();
            this.TB_PATMfilename = new System.Windows.Forms.TextBox();
            this.BT_ADD = new System.Windows.Forms.Button();
            this.BT_DEL = new System.Windows.Forms.Button();
            this.OK = new System.Windows.Forms.Button();
            this.Cancel = new System.Windows.Forms.Button();
            this.OFD_ADDFile = new System.Windows.Forms.OpenFileDialog();
            this.SuspendLayout();
            // 
            // LV_PATMfileDir
            // 
            this.LV_PATMfileDir.BackColor = System.Drawing.SystemColors.Window;
            this.LV_PATMfileDir.Location = new System.Drawing.Point(-2, -1);
            this.LV_PATMfileDir.Name = "LV_PATMfileDir";
            this.LV_PATMfileDir.Size = new System.Drawing.Size(287, 165);
            this.LV_PATMfileDir.TabIndex = 0;
            this.LV_PATMfileDir.UseCompatibleStateImageBehavior = false;
            // 
            // LB_PATMfilename
            // 
            this.LB_PATMfilename.AutoSize = true;
            this.LB_PATMfilename.Location = new System.Drawing.Point(38, 63);
            this.LB_PATMfilename.Name = "LB_PATMfilename";
            this.LB_PATMfilename.Size = new System.Drawing.Size(65, 12);
            this.LB_PATMfilename.TabIndex = 1;
            this.LB_PATMfilename.Text = "文件名称:";
            // 
            // TB_PATMfilename
            // 
            this.TB_PATMfilename.Location = new System.Drawing.Point(135, 60);
            this.TB_PATMfilename.Name = "TB_PATMfilename";
            this.TB_PATMfilename.Size = new System.Drawing.Size(100, 21);
            this.TB_PATMfilename.TabIndex = 2;
            // 
            // BT_ADD
            // 
            this.BT_ADD.Location = new System.Drawing.Point(12, 172);
            this.BT_ADD.Name = "BT_ADD";
            this.BT_ADD.Size = new System.Drawing.Size(47, 23);
            this.BT_ADD.TabIndex = 3;
            this.BT_ADD.Text = "添加";
            this.BT_ADD.UseVisualStyleBackColor = true;
            this.BT_ADD.Click += new System.EventHandler(this.BT_ADD_Click);
            // 
            // BT_DEL
            // 
            this.BT_DEL.Location = new System.Drawing.Point(76, 172);
            this.BT_DEL.Name = "BT_DEL";
            this.BT_DEL.Size = new System.Drawing.Size(47, 23);
            this.BT_DEL.TabIndex = 4;
            this.BT_DEL.Text = "删除";
            this.BT_DEL.UseVisualStyleBackColor = true;
            this.BT_DEL.Click += new System.EventHandler(this.BT_DEL_Click);
            // 
            // OK
            // 
            this.OK.Location = new System.Drawing.Point(160, 172);
            this.OK.Name = "OK";
            this.OK.Size = new System.Drawing.Size(47, 23);
            this.OK.TabIndex = 5;
            this.OK.Text = "确定";
            this.OK.UseVisualStyleBackColor = true;
            this.OK.Click += new System.EventHandler(this.OK_Click);
            // 
            // Cancel
            // 
            this.Cancel.Location = new System.Drawing.Point(225, 172);
            this.Cancel.Name = "Cancel";
            this.Cancel.Size = new System.Drawing.Size(47, 23);
            this.Cancel.TabIndex = 6;
            this.Cancel.Text = "取消";
            this.Cancel.UseVisualStyleBackColor = true;
            this.Cancel.Click += new System.EventHandler(this.Cancel_Click);
            // 
            // OFD_ADDFile
            // 
            this.OFD_ADDFile.FileName = "添加文件";
            this.OFD_ADDFile.Filter = "图像文件(*.jpg,*.bmp,*.jpeg,*.png)|*.jpg;*.bmp;*.jpeg;*.png";
            // 
            // F_PATMFiles
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(284, 207);
            this.Controls.Add(this.Cancel);
            this.Controls.Add(this.OK);
            this.Controls.Add(this.BT_DEL);
            this.Controls.Add(this.BT_ADD);
            this.Controls.Add(this.TB_PATMfilename);
            this.Controls.Add(this.LB_PATMfilename);
            this.Controls.Add(this.LV_PATMfileDir);
            this.Name = "F_PATMFiles";
            this.Text = "添加文件";
            this.Load += new System.EventHandler(this.F_PATMFiles_Load);
            this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.F_PATMFiles_KeyPress);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private ListView LV_PATMfileDir;
        private Label LB_PATMfilename;
        private TextBox TB_PATMfilename;
        private Button BT_ADD;
        private Button BT_DEL;
        private Button OK;
        private Button Cancel;
        private OpenFileDialog OFD_ADDFile;
    }
}