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

📄 mainform.designer.cs

📁 Souce Code and sample to transfer SQL Server database to SqlServer Compact edition database. C#, d
💻 CS
📖 第 1 页 / 共 2 页
字号:
namespace GLT.SqlCopy
{
    partial class MainForm
    {
        /// <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()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.ddlCatalog = new System.Windows.Forms.ComboBox();
            this.label5 = new System.Windows.Forms.Label();
            this.tbPassword = new System.Windows.Forms.TextBox();
            this.tbLogin = new System.Windows.Forms.TextBox();
            this.lblPassword = new System.Windows.Forms.Label();
            this.lblLogin = new System.Windows.Forms.Label();
            this.ddlAuthType = new System.Windows.Forms.ComboBox();
            this.label2 = new System.Windows.Forms.Label();
            this.tbServerName = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.panel1 = new System.Windows.Forms.Panel();
            this.label12 = new System.Windows.Forms.Label();
            this.rbVer35 = new System.Windows.Forms.RadioButton();
            this.rbVer3 = new System.Windows.Forms.RadioButton();
            this.cbEncryptDb = new System.Windows.Forms.CheckBox();
            this.tbMobileDestPassword = new System.Windows.Forms.TextBox();
            this.tbMobileDestLogin = new System.Windows.Forms.TextBox();
            this.label10 = new System.Windows.Forms.Label();
            this.label11 = new System.Windows.Forms.Label();
            this.btnSelectPath = new System.Windows.Forms.Button();
            this.tbDestPath = new System.Windows.Forms.TextBox();
            this.label9 = new System.Windows.Forms.Label();
            this.ServerPanel = new System.Windows.Forms.Panel();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.label3 = new System.Windows.Forms.Label();
            this.tbDestPassword = new System.Windows.Forms.TextBox();
            this.tbDestLogin = new System.Windows.Forms.TextBox();
            this.label4 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.ddlDestAuthType = new System.Windows.Forms.ComboBox();
            this.label7 = new System.Windows.Forms.Label();
            this.tbDestServerName = new System.Windows.Forms.TextBox();
            this.label8 = new System.Windows.Forms.Label();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.btnBeginCopy = new System.Windows.Forms.Button();
            this.button2 = new System.Windows.Forms.Button();
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.aboutSQLToSqlMobileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.panel1.SuspendLayout();
            this.ServerPanel.SuspendLayout();
            this.menuStrip1.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.ddlCatalog);
            this.groupBox1.Controls.Add(this.label5);
            this.groupBox1.Controls.Add(this.tbPassword);
            this.groupBox1.Controls.Add(this.tbLogin);
            this.groupBox1.Controls.Add(this.lblPassword);
            this.groupBox1.Controls.Add(this.lblLogin);
            this.groupBox1.Controls.Add(this.ddlAuthType);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.tbServerName);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Location = new System.Drawing.Point(12, 37);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(411, 207);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Source";
            // 
            // ddlCatalog
            // 
            this.ddlCatalog.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.ddlCatalog.FormattingEnabled = true;
            this.ddlCatalog.Items.AddRange(new object[] {
            "Windows Authentication",
            "SQL Server Authentication"});
            this.ddlCatalog.Location = new System.Drawing.Point(155, 164);
            this.ddlCatalog.Name = "ddlCatalog";
            this.ddlCatalog.Size = new System.Drawing.Size(247, 21);
            this.ddlCatalog.TabIndex = 9;
            this.ddlCatalog.DropDown += new System.EventHandler(this.ddlCatalog_DropDown);
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(7, 164);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(97, 13);
            this.label5.TabIndex = 8;
            this.label5.Text = "Catalog/Database:";
            // 
            // tbPassword
            // 
            this.tbPassword.Enabled = false;
            this.tbPassword.Location = new System.Drawing.Point(256, 117);
            this.tbPassword.Name = "tbPassword";
            this.tbPassword.PasswordChar = '*';
            this.tbPassword.Size = new System.Drawing.Size(146, 20);
            this.tbPassword.TabIndex = 7;
            // 
            // tbLogin
            // 
            this.tbLogin.Enabled = false;
            this.tbLogin.Location = new System.Drawing.Point(256, 91);
            this.tbLogin.Name = "tbLogin";
            this.tbLogin.Size = new System.Drawing.Size(146, 20);
            this.tbLogin.TabIndex = 6;
            // 
            // lblPassword
            // 
            this.lblPassword.AutoSize = true;
            this.lblPassword.Enabled = false;
            this.lblPassword.Location = new System.Drawing.Point(152, 117);
            this.lblPassword.Name = "lblPassword";
            this.lblPassword.Size = new System.Drawing.Size(56, 13);
            this.lblPassword.TabIndex = 5;
            this.lblPassword.Text = "Password:";
            // 
            // lblLogin
            // 
            this.lblLogin.AutoSize = true;
            this.lblLogin.Enabled = false;
            this.lblLogin.Location = new System.Drawing.Point(152, 91);
            this.lblLogin.Name = "lblLogin";
            this.lblLogin.Size = new System.Drawing.Size(36, 13);
            this.lblLogin.TabIndex = 4;
            this.lblLogin.Text = "Login:";
            // 
            // ddlAuthType
            // 
            this.ddlAuthType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.ddlAuthType.FormattingEnabled = true;
            this.ddlAuthType.Items.AddRange(new object[] {
            "Windows Authentication",
            "SQL Server Authentication"});
            this.ddlAuthType.Location = new System.Drawing.Point(155, 56);
            this.ddlAuthType.Name = "ddlAuthType";
            this.ddlAuthType.Size = new System.Drawing.Size(247, 21);
            this.ddlAuthType.TabIndex = 3;
            this.ddlAuthType.SelectedIndexChanged += new System.EventHandler(this.ddlAuthType_SelectedIndexChanged);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(7, 56);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(105, 13);
            this.label2.TabIndex = 2;
            this.label2.Text = "Authentication Type:";
            // 
            // tbServerName
            // 
            this.tbServerName.Location = new System.Drawing.Point(155, 20);
            this.tbServerName.Name = "tbServerName";
            this.tbServerName.Size = new System.Drawing.Size(247, 20);
            this.tbServerName.TabIndex = 1;
            this.tbServerName.Text = "pch0517\\sqlexpress";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(7, 20);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(72, 13);
            this.label1.TabIndex = 0;
            this.label1.Text = "Server Name:";
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.panel1);
            this.groupBox2.Controls.Add(this.ServerPanel);
            this.groupBox2.Location = new System.Drawing.Point(429, 37);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(411, 207);
            this.groupBox2.TabIndex = 1;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Destination";
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.label12);
            this.panel1.Controls.Add(this.rbVer35);
            this.panel1.Controls.Add(this.rbVer3);
            this.panel1.Controls.Add(this.cbEncryptDb);
            this.panel1.Controls.Add(this.tbMobileDestPassword);
            this.panel1.Controls.Add(this.tbMobileDestLogin);
            this.panel1.Controls.Add(this.label10);
            this.panel1.Controls.Add(this.label11);
            this.panel1.Controls.Add(this.btnSelectPath);
            this.panel1.Controls.Add(this.tbDestPath);
            this.panel1.Controls.Add(this.label9);
            this.panel1.Location = new System.Drawing.Point(7, 19);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(399, 173);
            this.panel1.TabIndex = 11;
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Enabled = false;
            this.label12.Location = new System.Drawing.Point(121, 124);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(80, 13);
            this.label12.TabIndex = 25;
            this.label12.Text = "Output Version:";
            // 
            // rbVer35
            // 
            this.rbVer35.AutoSize = true;
            this.rbVer35.Location = new System.Drawing.Point(248, 140);
            this.rbVer35.Name = "rbVer35";
            this.rbVer35.Size = new System.Drawing.Size(98, 17);
            this.rbVer35.TabIndex = 24;
            this.rbVer35.Text = "SQL Mobile 3.5";
            this.rbVer35.UseVisualStyleBackColor = true;
            // 
            // rbVer3
            // 
            this.rbVer3.AutoSize = true;
            this.rbVer3.Checked = true;
            this.rbVer3.Location = new System.Drawing.Point(124, 140);
            this.rbVer3.Name = "rbVer3";
            this.rbVer3.Size = new System.Drawing.Size(98, 17);
            this.rbVer3.TabIndex = 23;
            this.rbVer3.TabStop = true;
            this.rbVer3.Text = "SQL Mobile 3.0";
            this.rbVer3.UseVisualStyleBackColor = true;
            // 
            // cbEncryptDb
            // 
            this.cbEncryptDb.AutoSize = true;
            this.cbEncryptDb.Location = new System.Drawing.Point(124, 102);
            this.cbEncryptDb.Name = "cbEncryptDb";
            this.cbEncryptDb.Size = new System.Drawing.Size(117, 17);
            this.cbEncryptDb.TabIndex = 22;
            this.cbEncryptDb.Text = "Encrypt Database?";
            this.cbEncryptDb.UseVisualStyleBackColor = true;
            // 
            // tbMobileDestPassword
            // 
            this.tbMobileDestPassword.Location = new System.Drawing.Point(225, 65);
            this.tbMobileDestPassword.Name = "tbMobileDestPassword";
            this.tbMobileDestPassword.PasswordChar = '*';
            this.tbMobileDestPassword.Size = new System.Drawing.Size(146, 20);
            this.tbMobileDestPassword.TabIndex = 21;
            // 
            // tbMobileDestLogin
            // 
            this.tbMobileDestLogin.Location = new System.Drawing.Point(225, 39);
            this.tbMobileDestLogin.Name = "tbMobileDestLogin";
            this.tbMobileDestLogin.Size = new System.Drawing.Size(146, 20);
            this.tbMobileDestLogin.TabIndex = 20;
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(121, 65);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(56, 13);
            this.label10.TabIndex = 19;
            this.label10.Text = "Password:";
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(121, 39);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(36, 13);
            this.label11.TabIndex = 18;
            this.label11.Text = "Login:";
            // 
            // btnSelectPath
            // 

⌨️ 快捷键说明

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