This commit is contained in:
2022-07-25 16:37:40 +00:00
parent b536fbb3be
commit d9ba8e9f51
7 changed files with 189 additions and 89 deletions

View File

@@ -32,12 +32,14 @@
this.btnCancel = new System.Windows.Forms.Button();
this.lblUpdateMessage = new System.Windows.Forms.Label();
this.ckUpdatePriceCostOnly = new System.Windows.Forms.CheckBox();
this.panel1 = new System.Windows.Forms.Panel();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.Location = new System.Drawing.Point(372, 132);
this.btnOK.Location = new System.Drawing.Point(369, 145);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 21;
@@ -49,7 +51,7 @@
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(30, 132);
this.btnCancel.Location = new System.Drawing.Point(17, 145);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 20;
@@ -61,7 +63,7 @@
//
this.lblUpdateMessage.AutoSize = true;
this.lblUpdateMessage.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblUpdateMessage.Location = new System.Drawing.Point(27, 29);
this.lblUpdateMessage.Location = new System.Drawing.Point(14, 20);
this.lblUpdateMessage.Name = "lblUpdateMessage";
this.lblUpdateMessage.Size = new System.Drawing.Size(112, 13);
this.lblUpdateMessage.TabIndex = 22;
@@ -70,7 +72,7 @@
// ckUpdatePriceCostOnly
//
this.ckUpdatePriceCostOnly.AutoSize = true;
this.ckUpdatePriceCostOnly.Location = new System.Drawing.Point(30, 63);
this.ckUpdatePriceCostOnly.Location = new System.Drawing.Point(17, 53);
this.ckUpdatePriceCostOnly.Name = "ckUpdatePriceCostOnly";
this.ckUpdatePriceCostOnly.Size = new System.Drawing.Size(155, 17);
this.ckUpdatePriceCostOnly.TabIndex = 23;
@@ -78,22 +80,33 @@
this.ckUpdatePriceCostOnly.UseVisualStyleBackColor = true;
this.ckUpdatePriceCostOnly.Visible = false;
//
// panel1
//
this.panel1.Controls.Add(this.btnCancel);
this.panel1.Controls.Add(this.ckUpdatePriceCostOnly);
this.panel1.Controls.Add(this.btnOK);
this.panel1.Controls.Add(this.lblUpdateMessage);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(459, 181);
this.panel1.TabIndex = 24;
//
// MapApproveUpdateSelectedItems
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(459, 180);
this.Controls.Add(this.ckUpdatePriceCostOnly);
this.Controls.Add(this.lblUpdateMessage);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.btnCancel);
this.ClientSize = new System.Drawing.Size(459, 181);
this.ControlBox = false;
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "MapApproveUpdateSelectedItems";
this.ShowInTaskbar = false;
this.Text = "Update selected items?";
this.Load += new System.EventHandler(this.MapApproveUpdateSelectedItems_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
@@ -103,5 +116,6 @@
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Label lblUpdateMessage;
private System.Windows.Forms.CheckBox ckUpdatePriceCostOnly;
private System.Windows.Forms.Panel panel1;
}
}