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

📄 form1.designer.cs

📁 数据库字典的导出到EXL!数据库字典的导出到EXL!
💻 CS
字号:
namespace DataDictionnaryAutoGenerator
{
    partial class Form_Dictionary
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.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.bt_ChooseForlder = new System.Windows.Forms.Button();
            this.txt_Forlder = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.txt_Connection = new System.Windows.Forms.TextBox();
            this.bt_GennerateExcel = new System.Windows.Forms.Button();
            this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
            this.lb_info = new System.Windows.Forms.Label();
            this.radioButton_table = new System.Windows.Forms.RadioButton();
            this.radioButton_view = new System.Windows.Forms.RadioButton();
            this.SuspendLayout();
            // 
            // bt_ChooseForlder
            // 
            this.bt_ChooseForlder.Location = new System.Drawing.Point(18, 45);
            this.bt_ChooseForlder.Name = "bt_ChooseForlder";
            this.bt_ChooseForlder.Size = new System.Drawing.Size(99, 23);
            this.bt_ChooseForlder.TabIndex = 0;
            this.bt_ChooseForlder.Text = "选择生成位置";
            this.bt_ChooseForlder.UseVisualStyleBackColor = true;
            this.bt_ChooseForlder.Click += new System.EventHandler(this.bt_ChooseForlder_Click);
            // 
            // txt_Forlder
            // 
            this.txt_Forlder.Location = new System.Drawing.Point(135, 46);
            this.txt_Forlder.Name = "txt_Forlder";
            this.txt_Forlder.Size = new System.Drawing.Size(260, 21);
            this.txt_Forlder.TabIndex = 1;
            this.txt_Forlder.Text = "C:\\Documents and Settings\\zhanghb\\桌面";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(17, 9);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(113, 12);
            this.label1.TabIndex = 2;
            this.label1.Text = "数据库连接字符串:";
            // 
            // txt_Connection
            // 
            this.txt_Connection.Location = new System.Drawing.Point(135, 6);
            this.txt_Connection.Name = "txt_Connection";
            this.txt_Connection.Size = new System.Drawing.Size(260, 21);
            this.txt_Connection.TabIndex = 1;
            this.txt_Connection.Text = "server=.;uid=sa;pwd=sa;database=Demo";
            // 
            // bt_GennerateExcel
            // 
            this.bt_GennerateExcel.Location = new System.Drawing.Point(135, 81);
            this.bt_GennerateExcel.Name = "bt_GennerateExcel";
            this.bt_GennerateExcel.Size = new System.Drawing.Size(75, 23);
            this.bt_GennerateExcel.TabIndex = 3;
            this.bt_GennerateExcel.Text = "导出";
            this.bt_GennerateExcel.UseVisualStyleBackColor = true;
            this.bt_GennerateExcel.Click += new System.EventHandler(this.bt_GennerateExcel_Click);
            // 
            // lb_info
            // 
            this.lb_info.AutoSize = true;
            this.lb_info.ForeColor = System.Drawing.Color.Red;
            this.lb_info.Location = new System.Drawing.Point(8, 112);
            this.lb_info.Name = "lb_info";
            this.lb_info.Size = new System.Drawing.Size(0, 12);
            this.lb_info.TabIndex = 5;
            // 
            // radioButton_table
            // 
            this.radioButton_table.AutoSize = true;
            this.radioButton_table.Checked = true;
            this.radioButton_table.Location = new System.Drawing.Point(21, 86);
            this.radioButton_table.Name = "radioButton_table";
            this.radioButton_table.Size = new System.Drawing.Size(35, 16);
            this.radioButton_table.TabIndex = 6;
            this.radioButton_table.TabStop = true;
            this.radioButton_table.Text = "表";
            this.radioButton_table.UseVisualStyleBackColor = true;
            // 
            // radioButton_view
            // 
            this.radioButton_view.AutoSize = true;
            this.radioButton_view.Location = new System.Drawing.Point(68, 87);
            this.radioButton_view.Name = "radioButton_view";
            this.radioButton_view.Size = new System.Drawing.Size(47, 16);
            this.radioButton_view.TabIndex = 6;
            this.radioButton_view.Text = "视图";
            this.radioButton_view.UseVisualStyleBackColor = true;
            // 
            // Form_Dictionary
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(414, 133);
            this.Controls.Add(this.radioButton_view);
            this.Controls.Add(this.radioButton_table);
            this.Controls.Add(this.lb_info);
            this.Controls.Add(this.bt_GennerateExcel);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.txt_Connection);
            this.Controls.Add(this.txt_Forlder);
            this.Controls.Add(this.bt_ChooseForlder);
            this.Name = "Form_Dictionary";
            this.Text = "导出数据字典";
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Button bt_ChooseForlder;
        private System.Windows.Forms.TextBox txt_Forlder;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.TextBox txt_Connection;
        private System.Windows.Forms.Button bt_GennerateExcel;
        private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
        private System.Windows.Forms.Label lb_info;
        private System.Windows.Forms.RadioButton radioButton_table;
        private System.Windows.Forms.RadioButton radioButton_view;
    }
}

⌨️ 快捷键说明

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