📄 form1.designer.cs
字号:
namespace AddEditDeleteDataGridView
{
partial class Form1
{
/// <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();
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
this.userDataGridView = new System.Windows.Forms.DataGridView();
this.btnLoad = new System.Windows.Forms.Button();
this.btnAdd = new System.Windows.Forms.Button();
this.btnUpdate = new System.Windows.Forms.Button();
this.btnDelete = new System.Windows.Forms.Button();
this.grpSqlServers = new System.Windows.Forms.GroupBox();
this.prgProgress = new System.Windows.Forms.ProgressBar();
this.cmbTables = new System.Windows.Forms.ComboBox();
this.btnGetAllTables = new System.Windows.Forms.Button();
this.cmbAllDataBases = new System.Windows.Forms.ComboBox();
this.lblPassword = new System.Windows.Forms.Label();
this.lblUserName = new System.Windows.Forms.Label();
this.txtPassword = new System.Windows.Forms.TextBox();
this.txtUserName = new System.Windows.Forms.TextBox();
this.btnGetAllDataBases = new System.Windows.Forms.Button();
this.btnLoadSqlServers = new System.Windows.Forms.Button();
this.cmbSqlServers = new System.Windows.Forms.ComboBox();
this.grpDataManipulate = new System.Windows.Forms.GroupBox();
this.lblPageNums = new System.Windows.Forms.Label();
this.lblTotRecords = new System.Windows.Forms.Label();
this.btnLast = new System.Windows.Forms.Button();
this.btnNext = new System.Windows.Forms.Button();
this.btnPrevious = new System.Windows.Forms.Button();
this.btnFirst = new System.Windows.Forms.Button();
this.btnNoOfPages = new System.Windows.Forms.Button();
this.lblNoOfPages = new System.Windows.Forms.Label();
this.cmbNoOfRecords = new System.Windows.Forms.ComboBox();
this.lblLoadedTable = new System.Windows.Forms.Label();
this.grpLogo = new System.Windows.Forms.GroupBox();
this.button1 = new System.Windows.Forms.Button();
this.lblName = new System.Windows.Forms.Label();
this.picLogo = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.userDataGridView)).BeginInit();
this.grpSqlServers.SuspendLayout();
this.grpDataManipulate.SuspendLayout();
this.grpLogo.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picLogo)).BeginInit();
this.SuspendLayout();
//
// notifyIcon1
//
this.notifyIcon1.Text = "notifyIcon1";
this.notifyIcon1.Visible = true;
//
// userDataGridView
//
this.userDataGridView.AllowUserToOrderColumns = true;
this.userDataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
this.userDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.userDataGridView.Location = new System.Drawing.Point(6, 91);
this.userDataGridView.Name = "userDataGridView";
this.userDataGridView.ReadOnly = true;
this.userDataGridView.RowTemplate.Height = 23;
this.userDataGridView.Size = new System.Drawing.Size(391, 322);
this.userDataGridView.TabIndex = 0;
//this.userDataGridView.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.userDataGridView_CellFormatting);
this.userDataGridView.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.userDataGridView_CellEnter);
this.userDataGridView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.userDataGridView_CellContentClick);
//
// btnLoad
//
this.btnLoad.Location = new System.Drawing.Point(10, 38);
this.btnLoad.Name = "btnLoad";
this.btnLoad.Size = new System.Drawing.Size(75, 21);
this.btnLoad.TabIndex = 8;
this.btnLoad.Text = "&Load data";
this.btnLoad.UseVisualStyleBackColor = true;
this.btnLoad.Click += new System.EventHandler(this.btnLoad_Click);
//
// btnAdd
//
this.btnAdd.Location = new System.Drawing.Point(6, 419);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(75, 21);
this.btnAdd.TabIndex = 15;
this.btnAdd.Text = "&Add/Update";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// btnUpdate
//
this.btnUpdate.Location = new System.Drawing.Point(87, 419);
this.btnUpdate.Name = "btnUpdate";
this.btnUpdate.Size = new System.Drawing.Size(75, 21);
this.btnUpdate.TabIndex = 16;
this.btnUpdate.Text = "&Commit";
this.btnUpdate.UseVisualStyleBackColor = true;
this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
//
// btnDelete
//
this.btnDelete.Location = new System.Drawing.Point(168, 419);
this.btnDelete.Name = "btnDelete";
this.btnDelete.Size = new System.Drawing.Size(75, 21);
this.btnDelete.TabIndex = 17;
this.btnDelete.Text = "&Delete";
this.btnDelete.UseVisualStyleBackColor = true;
this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
//
// grpSqlServers
//
this.grpSqlServers.Controls.Add(this.prgProgress);
this.grpSqlServers.Controls.Add(this.cmbTables);
this.grpSqlServers.Controls.Add(this.btnGetAllTables);
this.grpSqlServers.Controls.Add(this.cmbAllDataBases);
this.grpSqlServers.Controls.Add(this.lblPassword);
this.grpSqlServers.Controls.Add(this.lblUserName);
this.grpSqlServers.Controls.Add(this.txtPassword);
this.grpSqlServers.Controls.Add(this.txtUserName);
this.grpSqlServers.Controls.Add(this.btnGetAllDataBases);
this.grpSqlServers.Controls.Add(this.btnLoadSqlServers);
this.grpSqlServers.Controls.Add(this.cmbSqlServers);
this.grpSqlServers.Location = new System.Drawing.Point(12, 13);
this.grpSqlServers.Name = "grpSqlServers";
this.grpSqlServers.Size = new System.Drawing.Size(230, 266);
this.grpSqlServers.TabIndex = 5;
this.grpSqlServers.TabStop = false;
this.grpSqlServers.Text = "Load and login to SQL server";
//
// prgProgress
//
this.prgProgress.Location = new System.Drawing.Point(6, 239);
this.prgProgress.Name = "prgProgress";
this.prgProgress.Size = new System.Drawing.Size(217, 21);
this.prgProgress.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
this.prgProgress.TabIndex = 8;
//
// cmbTables
//
this.cmbTables.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbTables.FormattingEnabled = true;
this.cmbTables.Location = new System.Drawing.Point(6, 214);
this.cmbTables.Name = "cmbTables";
this.cmbTables.Size = new System.Drawing.Size(217, 20);
this.cmbTables.TabIndex = 7;
//
// btnGetAllTables
//
this.btnGetAllTables.Location = new System.Drawing.Point(6, 184);
this.btnGetAllTables.Name = "btnGetAllTables";
this.btnGetAllTables.Size = new System.Drawing.Size(217, 21);
this.btnGetAllTables.TabIndex = 6;
this.btnGetAllTables.Text = "Get All &Tables";
this.btnGetAllTables.UseVisualStyleBackColor = true;
this.btnGetAllTables.Click += new System.EventHandler(this.btnGetAllTables_Click);
//
// cmbAllDataBases
//
this.cmbAllDataBases.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbAllDataBases.FormattingEnabled = true;
this.cmbAllDataBases.Location = new System.Drawing.Point(6, 157);
this.cmbAllDataBases.Name = "cmbAllDataBases";
this.cmbAllDataBases.Size = new System.Drawing.Size(217, 20);
this.cmbAllDataBases.TabIndex = 5;
//
// lblPassword
//
this.lblPassword.AutoSize = true;
this.lblPassword.Location = new System.Drawing.Point(6, 106);
this.lblPassword.Name = "lblPassword";
this.lblPassword.Size = new System.Drawing.Size(65, 12);
this.lblPassword.TabIndex = 11;
this.lblPassword.Text = "Password: ";
//
// lblUserName
//
this.lblUserName.AutoSize = true;
this.lblUserName.Location = new System.Drawing.Point(6, 82);
this.lblUserName.Name = "lblUserName";
this.lblUserName.Size = new System.Drawing.Size(71, 12);
this.lblUserName.TabIndex = 10;
this.lblUserName.Text = "User name: ";
//
// txtPassword
//
this.txtPassword.Location = new System.Drawing.Point(123, 103);
this.txtPassword.Name = "txtPassword";
this.txtPassword.PasswordChar = '*';
this.txtPassword.Size = new System.Drawing.Size(100, 21);
this.txtPassword.TabIndex = 3;
//
// txtUserName
//
this.txtUserName.Location = new System.Drawing.Point(123, 78);
this.txtUserName.Name = "txtUserName";
this.txtUserName.Size = new System.Drawing.Size(100, 21);
this.txtUserName.TabIndex = 2;
//
// btnGetAllDataBases
//
this.btnGetAllDataBases.Location = new System.Drawing.Point(6, 127);
this.btnGetAllDataBases.Name = "btnGetAllDataBases";
this.btnGetAllDataBases.Size = new System.Drawing.Size(217, 21);
this.btnGetAllDataBases.TabIndex = 4;
this.btnGetAllDataBases.Text = "Get All &Databases";
this.btnGetAllDataBases.UseVisualStyleBackColor = true;
this.btnGetAllDataBases.Click += new System.EventHandler(this.btnGetAllDataBases_Click);
//
// btnLoadSqlServers
//
this.btnLoadSqlServers.Location = new System.Drawing.Point(6, 27);
this.btnLoadSqlServers.Name = "btnLoadSqlServers";
this.btnLoadSqlServers.Size = new System.Drawing.Size(217, 21);
this.btnLoadSqlServers.TabIndex = 0;
this.btnLoadSqlServers.Text = "Get all &Sql servers on network";
this.btnLoadSqlServers.UseVisualStyleBackColor = true;
this.btnLoadSqlServers.Click += new System.EventHandler(this.btnLoadSqlServers_Click);
//
// cmbSqlServers
//
this.cmbSqlServers.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbSqlServers.FormattingEnabled = true;
this.cmbSqlServers.Location = new System.Drawing.Point(6, 54);
this.cmbSqlServers.Name = "cmbSqlServers";
this.cmbSqlServers.Size = new System.Drawing.Size(217, 20);
this.cmbSqlServers.TabIndex = 1;
//
// grpDataManipulate
//
this.grpDataManipulate.Controls.Add(this.lblPageNums);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -