FrmDatabase: Fix btnVerify anchoring

This commit is contained in:
2021-11-17 09:57:47 +01:00
parent 6bde0bd7e5
commit ac39311e83

View File

@@ -43,6 +43,7 @@
this.colEsquema = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colEsquema = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.colNombreTabla = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colNombreTabla = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.colTipo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colTipo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.btnVerify = new System.Windows.Forms.Button();
this.btnExportSchema = new System.Windows.Forms.Button(); this.btnExportSchema = new System.Windows.Forms.Button();
this.btnExportData = new System.Windows.Forms.Button(); this.btnExportData = new System.Windows.Forms.Button();
this.lsvColumnas = new VAR.DatabaseExplorer.Controls.CustomListView(); this.lsvColumnas = new VAR.DatabaseExplorer.Controls.CustomListView();
@@ -51,7 +52,6 @@
this.colClave = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colClave = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.colNullable = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.colNullable = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.txtConString = new VAR.DatabaseExplorer.Controls.CustomTextBox(); this.txtConString = new VAR.DatabaseExplorer.Controls.CustomTextBox();
this.btnVerify = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout();
@@ -234,6 +234,17 @@
this.colTipo.Text = "Tipo"; this.colTipo.Text = "Tipo";
this.colTipo.Width = 71; this.colTipo.Width = 71;
// //
// btnVerify
//
this.btnVerify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnVerify.Location = new System.Drawing.Point(262, 485);
this.btnVerify.Name = "btnVerify";
this.btnVerify.Size = new System.Drawing.Size(75, 23);
this.btnVerify.TabIndex = 17;
this.btnVerify.Text = "Verify";
this.btnVerify.UseVisualStyleBackColor = true;
this.btnVerify.Click += new System.EventHandler(this.btnVerify_Click);
//
// btnExportSchema // btnExportSchema
// //
this.btnExportSchema.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.btnExportSchema.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
@@ -306,16 +317,6 @@
this.txtConString.TabIndex = 0; this.txtConString.TabIndex = 0;
this.txtConString.TabWidth = 8; this.txtConString.TabWidth = 8;
// //
// btnVerify
//
this.btnVerify.Location = new System.Drawing.Point(262, 485);
this.btnVerify.Name = "btnVerify";
this.btnVerify.Size = new System.Drawing.Size(75, 23);
this.btnVerify.TabIndex = 17;
this.btnVerify.Text = "Verify";
this.btnVerify.UseVisualStyleBackColor = true;
this.btnVerify.Click += new System.EventHandler(this.btnVerify_Click);
//
// FrmDatabase // FrmDatabase
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);