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

📄 datamanipulation.designer.cs

📁 sqlce查询分析器
💻 CS
字号:
namespace CEQuery
{
    partial class DataManipulation
    {
        /// <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.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataManipulation));
            this.dgvTable = new System.Windows.Forms.DataGridView();
            this.ctxGrid = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.generateGUIDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.generateDateTimeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.btnCancel = new System.Windows.Forms.Button();
            this.btnSave = new System.Windows.Forms.Button();
            this.btnHidden = new System.Windows.Forms.Button();
            this.Column_Name = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Data_Type = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Is_Nullable = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Value = new System.Windows.Forms.DataGridViewTextBoxColumn();
            ((System.ComponentModel.ISupportInitialize)(this.dgvTable)).BeginInit();
            this.ctxGrid.SuspendLayout();
            this.SuspendLayout();
            // 
            // dgvTable
            // 
            this.dgvTable.AllowUserToAddRows = false;
            this.dgvTable.AllowUserToDeleteRows = false;
            this.dgvTable.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dgvTable.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column_Name,
            this.Data_Type,
            this.Is_Nullable,
            this.Value});
            this.dgvTable.ContextMenuStrip = this.ctxGrid;
            this.dgvTable.Location = new System.Drawing.Point(12, 12);
            this.dgvTable.Name = "dgvTable";
            this.dgvTable.Size = new System.Drawing.Size(593, 242);
            this.dgvTable.TabIndex = 0;
            this.dgvTable.MouseUp += new System.Windows.Forms.MouseEventHandler(this.dgvTable_MouseUp);
            // 
            // ctxGrid
            // 
            this.ctxGrid.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.generateGUIDToolStripMenuItem,
            this.generateDateTimeToolStripMenuItem});
            this.ctxGrid.Name = "ctxGrid";
            this.ctxGrid.Size = new System.Drawing.Size(179, 48);
            // 
            // generateGUIDToolStripMenuItem
            // 
            this.generateGUIDToolStripMenuItem.Image = global::CEQuery.Properties.Resources.forward;
            this.generateGUIDToolStripMenuItem.Name = "generateGUIDToolStripMenuItem";
            this.generateGUIDToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
            this.generateGUIDToolStripMenuItem.Text = "Generate GUID";
            this.generateGUIDToolStripMenuItem.Click += new System.EventHandler(this.generateGUIDToolStripMenuItem_Click);
            // 
            // generateDateTimeToolStripMenuItem
            // 
            this.generateDateTimeToolStripMenuItem.Image = global::CEQuery.Properties.Resources.forward;
            this.generateDateTimeToolStripMenuItem.Name = "generateDateTimeToolStripMenuItem";
            this.generateDateTimeToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
            this.generateDateTimeToolStripMenuItem.Text = "Generate DateTime";
            this.generateDateTimeToolStripMenuItem.Click += new System.EventHandler(this.generateDateTimeToolStripMenuItem_Click);
            // 
            // btnCancel
            // 
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCancel.Location = new System.Drawing.Point(530, 260);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(75, 23);
            this.btnCancel.TabIndex = 1;
            this.btnCancel.Text = "Cancel";
            this.btnCancel.UseVisualStyleBackColor = true;
            // 
            // btnSave
            // 
            this.btnSave.Location = new System.Drawing.Point(449, 260);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(75, 23);
            this.btnSave.TabIndex = 2;
            this.btnSave.Text = "Save";
            this.btnSave.UseVisualStyleBackColor = true;
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            // 
            // btnHidden
            // 
            this.btnHidden.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.btnHidden.Location = new System.Drawing.Point(368, 260);
            this.btnHidden.Name = "btnHidden";
            this.btnHidden.Size = new System.Drawing.Size(0, 0);
            this.btnHidden.TabIndex = 3;
            this.btnHidden.Text = "Save";
            this.btnHidden.UseVisualStyleBackColor = true;
            this.btnHidden.Click += new System.EventHandler(this.btnHidden_Click);
            // 
            // Column_Name
            // 
            this.Column_Name.DataPropertyName = "Column_Name";
            this.Column_Name.HeaderText = "Column";
            this.Column_Name.Name = "Column_Name";
            this.Column_Name.ReadOnly = true;
            // 
            // Data_Type
            // 
            this.Data_Type.DataPropertyName = "Data_Type";
            this.Data_Type.HeaderText = "Type";
            this.Data_Type.Name = "Data_Type";
            this.Data_Type.ReadOnly = true;
            // 
            // Is_Nullable
            // 
            this.Is_Nullable.DataPropertyName = "Is_Nullable";
            this.Is_Nullable.HeaderText = "Nullable";
            this.Is_Nullable.Name = "Is_Nullable";
            this.Is_Nullable.ReadOnly = true;
            // 
            // Value
            // 
            this.Value.DataPropertyName = "Value";
            this.Value.HeaderText = "Value";
            this.Value.Name = "Value";
            this.Value.Width = 230;
            // 
            // DataManipulation
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(617, 287);
            this.Controls.Add(this.btnHidden);
            this.Controls.Add(this.btnSave);
            this.Controls.Add(this.btnCancel);
            this.Controls.Add(this.dgvTable);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "DataManipulation";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "DataManipulation";
            this.Load += new System.EventHandler(this.DataManipulation_Load);
            ((System.ComponentModel.ISupportInitialize)(this.dgvTable)).EndInit();
            this.ctxGrid.ResumeLayout(false);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.DataGridView dgvTable;
        private System.Windows.Forms.Button btnCancel;
        private System.Windows.Forms.Button btnSave;
        private System.Windows.Forms.ContextMenuStrip ctxGrid;
        private System.Windows.Forms.ToolStripMenuItem generateGUIDToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem generateDateTimeToolStripMenuItem;
        private System.Windows.Forms.Button btnHidden;
        private System.Windows.Forms.DataGridViewTextBoxColumn Column_Name;
        private System.Windows.Forms.DataGridViewTextBoxColumn Data_Type;
        private System.Windows.Forms.DataGridViewTextBoxColumn Is_Nullable;
        private System.Windows.Forms.DataGridViewTextBoxColumn Value;
    }
}

⌨️ 快捷键说明

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