mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-09 18:12:32 +02:00
171 lines
8.8 KiB
C#
171 lines
8.8 KiB
C#
namespace UVtools.GUI.Forms
|
|
{
|
|
partial class FrmInputBox
|
|
{
|
|
/// <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(FrmInputBox));
|
|
this.lbDescription = new System.Windows.Forms.Label();
|
|
this.lbCurrentValue = new System.Windows.Forms.Label();
|
|
this.tbCurrentValue = new System.Windows.Forms.TextBox();
|
|
this.lbNewValue = new System.Windows.Forms.Label();
|
|
this.numNewValue = new System.Windows.Forms.NumericUpDown();
|
|
this.btnModify = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.numNewValue)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// lbDescription
|
|
//
|
|
this.lbDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.lbDescription.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.lbDescription.Location = new System.Drawing.Point(13, 14);
|
|
this.lbDescription.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.lbDescription.Name = "lbDescription";
|
|
this.lbDescription.Size = new System.Drawing.Size(495, 128);
|
|
this.lbDescription.TabIndex = 0;
|
|
this.lbDescription.Text = "Description";
|
|
//
|
|
// lbCurrentValue
|
|
//
|
|
this.lbCurrentValue.AutoSize = true;
|
|
this.lbCurrentValue.Location = new System.Drawing.Point(13, 150);
|
|
this.lbCurrentValue.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.lbCurrentValue.Name = "lbCurrentValue";
|
|
this.lbCurrentValue.Size = new System.Drawing.Size(111, 20);
|
|
this.lbCurrentValue.TabIndex = 1;
|
|
this.lbCurrentValue.Text = "Current Value:";
|
|
//
|
|
// tbCurrentValue
|
|
//
|
|
this.tbCurrentValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.tbCurrentValue.CausesValidation = false;
|
|
this.tbCurrentValue.Location = new System.Drawing.Point(132, 147);
|
|
this.tbCurrentValue.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.tbCurrentValue.Name = "tbCurrentValue";
|
|
this.tbCurrentValue.ReadOnly = true;
|
|
this.tbCurrentValue.Size = new System.Drawing.Size(376, 26);
|
|
this.tbCurrentValue.TabIndex = 2;
|
|
//
|
|
// lbNewValue
|
|
//
|
|
this.lbNewValue.AutoSize = true;
|
|
this.lbNewValue.Location = new System.Drawing.Point(13, 189);
|
|
this.lbNewValue.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.lbNewValue.Name = "lbNewValue";
|
|
this.lbNewValue.Size = new System.Drawing.Size(89, 20);
|
|
this.lbNewValue.TabIndex = 3;
|
|
this.lbNewValue.Text = "New Value:";
|
|
//
|
|
// numNewValue
|
|
//
|
|
this.numNewValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.numNewValue.DecimalPlaces = 2;
|
|
this.numNewValue.Location = new System.Drawing.Point(132, 187);
|
|
this.numNewValue.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.numNewValue.Name = "numNewValue";
|
|
this.numNewValue.Size = new System.Drawing.Size(378, 26);
|
|
this.numNewValue.TabIndex = 4;
|
|
this.numNewValue.ValueChanged += new System.EventHandler(this.ValueChanged);
|
|
//
|
|
// btnModify
|
|
//
|
|
this.btnModify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnModify.Enabled = false;
|
|
this.btnModify.Image = global::UVtools.GUI.Properties.Resources.Ok_24x24;
|
|
this.btnModify.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
this.btnModify.Location = new System.Drawing.Point(193, 227);
|
|
this.btnModify.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.btnModify.Name = "btnModify";
|
|
this.btnModify.Size = new System.Drawing.Size(150, 48);
|
|
this.btnModify.TabIndex = 6;
|
|
this.btnModify.Text = "&Modify";
|
|
this.btnModify.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
|
this.btnModify.UseVisualStyleBackColor = true;
|
|
this.btnModify.Click += new System.EventHandler(this.ItemClicked);
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Image = global::UVtools.GUI.Properties.Resources.Cancel_24x24;
|
|
this.btnCancel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
this.btnCancel.Location = new System.Drawing.Point(359, 227);
|
|
this.btnCancel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(150, 48);
|
|
this.btnCancel.TabIndex = 5;
|
|
this.btnCancel.Text = "&Cancel";
|
|
this.btnCancel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.ItemClicked);
|
|
//
|
|
// FrmInputBox
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.btnCancel;
|
|
this.ClientSize = new System.Drawing.Size(527, 298);
|
|
this.Controls.Add(this.btnModify);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.numNewValue);
|
|
this.Controls.Add(this.lbNewValue);
|
|
this.Controls.Add(this.tbCurrentValue);
|
|
this.Controls.Add(this.lbCurrentValue);
|
|
this.Controls.Add(this.lbDescription);
|
|
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.KeyPreview = true;
|
|
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "FrmInputBox";
|
|
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
|
this.Text = "Form1";
|
|
this.TopMost = true;
|
|
((System.ComponentModel.ISupportInitialize)(this.numNewValue)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label lbDescription;
|
|
private System.Windows.Forms.Label lbCurrentValue;
|
|
private System.Windows.Forms.TextBox tbCurrentValue;
|
|
private System.Windows.Forms.Label lbNewValue;
|
|
private System.Windows.Forms.NumericUpDown numNewValue;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnModify;
|
|
}
|
|
} |