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

📄 lc_dataio.designer.cs

📁 可以实现任意数据库之间的数据互导,可以实现任意数据库之间的数据互导
💻 CS
字号:
namespace LC_DataIO
{
    partial class LC_DataIo
    {
        /// <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(LC_DataIo));
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.系统操作ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.wizard_ts = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.wizard_btn = new System.Windows.Forms.ToolStripButton();
            this.msg_list = new System.Windows.Forms.ListBox();
            this.progressBar1 = new System.Windows.Forms.ProgressBar();
            this.menuStrip1.SuspendLayout();
            this.toolStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.系统操作ToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(687, 24);
            this.menuStrip1.TabIndex = 0;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // 系统操作ToolStripMenuItem
            // 
            this.系统操作ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.wizard_ts});
            this.系统操作ToolStripMenuItem.Name = "系统操作ToolStripMenuItem";
            this.系统操作ToolStripMenuItem.Size = new System.Drawing.Size(67, 20);
            this.系统操作ToolStripMenuItem.Text = "系统操作";
            // 
            // wizard_ts
            // 
            this.wizard_ts.Name = "wizard_ts";
            this.wizard_ts.Size = new System.Drawing.Size(146, 22);
            this.wizard_ts.Text = "数据转化向导";
            this.wizard_ts.Click += new System.EventHandler(this.wizard_ts_Click);
            // 
            // toolStrip1
            // 
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.wizard_btn});
            this.toolStrip1.Location = new System.Drawing.Point(0, 24);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(687, 39);
            this.toolStrip1.TabIndex = 1;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // wizard_btn
            // 
            this.wizard_btn.Image = global::LC_DataIO.Properties.Resources.group_gems3;
            this.wizard_btn.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.wizard_btn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.wizard_btn.Name = "wizard_btn";
            this.wizard_btn.Size = new System.Drawing.Size(115, 36);
            this.wizard_btn.Text = "数据转化向导";
            this.wizard_btn.Click += new System.EventHandler(this.wizard_ts_Click);
            // 
            // msg_list
            // 
            this.msg_list.Dock = System.Windows.Forms.DockStyle.Fill;
            this.msg_list.FormattingEnabled = true;
            this.msg_list.ItemHeight = 12;
            this.msg_list.Location = new System.Drawing.Point(0, 63);
            this.msg_list.Name = "msg_list";
            this.msg_list.Size = new System.Drawing.Size(687, 376);
            this.msg_list.TabIndex = 2;
            // 
            // progressBar1
            // 
            this.progressBar1.Location = new System.Drawing.Point(133, 32);
            this.progressBar1.Name = "progressBar1";
            this.progressBar1.Size = new System.Drawing.Size(542, 23);
            this.progressBar1.TabIndex = 3;
            // 
            // LC_DataIo
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(687, 444);
            this.Controls.Add(this.progressBar1);
            this.Controls.Add(this.msg_list);
            this.Controls.Add(this.toolStrip1);
            this.Controls.Add(this.menuStrip1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "LC_DataIo";
            this.Text = "数据导入导出";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LC_DataIo_FormClosing);
            this.Load += new System.EventHandler(this.LC_DataIo_Load);
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.MenuStrip menuStrip1;
        private System.Windows.Forms.ToolStrip toolStrip1;
        private System.Windows.Forms.ToolStripMenuItem 系统操作ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem wizard_ts;
        private System.Windows.Forms.ToolStripButton wizard_btn;
        private System.Windows.Forms.ListBox msg_list;
        private System.Windows.Forms.ProgressBar progressBar1;
    }
}

⌨️ 快捷键说明

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