124 lines
5.3 KiB
C#
124 lines
5.3 KiB
C#
namespace Workplace.Forms
|
|
{
|
|
partial class WeightLimitsDlg
|
|
{
|
|
/// <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.minWeightTextBox = new System.Windows.Forms.TextBox();
|
|
this.maxWeightTextBox = new System.Windows.Forms.TextBox();
|
|
this.minWeightLabel = new System.Windows.Forms.Label();
|
|
this.maxWeightLabel = new System.Windows.Forms.Label();
|
|
this.okButton = new System.Windows.Forms.Button();
|
|
this.asterixLabel = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// minWeightTextBox
|
|
//
|
|
this.minWeightTextBox.Location = new System.Drawing.Point(136, 21);
|
|
this.minWeightTextBox.Name = "minWeightTextBox";
|
|
this.minWeightTextBox.Size = new System.Drawing.Size(100, 20);
|
|
this.minWeightTextBox.TabIndex = 0;
|
|
//
|
|
// maxWeightTextBox
|
|
//
|
|
this.maxWeightTextBox.Location = new System.Drawing.Point(136, 47);
|
|
this.maxWeightTextBox.Name = "maxWeightTextBox";
|
|
this.maxWeightTextBox.Size = new System.Drawing.Size(100, 20);
|
|
this.maxWeightTextBox.TabIndex = 1;
|
|
//
|
|
// minWeightLabel
|
|
//
|
|
this.minWeightLabel.AutoSize = true;
|
|
this.minWeightLabel.Location = new System.Drawing.Point(26, 24);
|
|
this.minWeightLabel.Name = "minWeightLabel";
|
|
this.minWeightLabel.Size = new System.Drawing.Size(76, 13);
|
|
this.minWeightLabel.TabIndex = 2;
|
|
this.minWeightLabel.Text = "Min. weight [g]";
|
|
//
|
|
// maxWeightLabel
|
|
//
|
|
this.maxWeightLabel.AutoSize = true;
|
|
this.maxWeightLabel.Location = new System.Drawing.Point(26, 50);
|
|
this.maxWeightLabel.Name = "maxWeightLabel";
|
|
this.maxWeightLabel.Size = new System.Drawing.Size(79, 13);
|
|
this.maxWeightLabel.TabIndex = 3;
|
|
this.maxWeightLabel.Text = "Max. weight [g]";
|
|
//
|
|
// okButton
|
|
//
|
|
this.okButton.Location = new System.Drawing.Point(298, 24);
|
|
this.okButton.Name = "okButton";
|
|
this.okButton.Size = new System.Drawing.Size(75, 39);
|
|
this.okButton.TabIndex = 4;
|
|
this.okButton.Text = "OK";
|
|
this.okButton.UseVisualStyleBackColor = true;
|
|
this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
|
//
|
|
// asterixLabel
|
|
//
|
|
this.asterixLabel.AutoSize = true;
|
|
this.asterixLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
|
|
this.asterixLabel.ForeColor = System.Drawing.Color.Red;
|
|
this.asterixLabel.Location = new System.Drawing.Point(241, 23);
|
|
this.asterixLabel.Name = "asterixLabel";
|
|
this.asterixLabel.Size = new System.Drawing.Size(28, 42);
|
|
this.asterixLabel.TabIndex = 5;
|
|
this.asterixLabel.Text = "!";
|
|
this.asterixLabel.Visible = false;
|
|
//
|
|
// WeightLimitsDlg
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(407, 82);
|
|
this.Controls.Add(this.asterixLabel);
|
|
this.Controls.Add(this.okButton);
|
|
this.Controls.Add(this.maxWeightLabel);
|
|
this.Controls.Add(this.minWeightLabel);
|
|
this.Controls.Add(this.maxWeightTextBox);
|
|
this.Controls.Add(this.minWeightTextBox);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "WeightLimitsDlg";
|
|
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "WeightLimitsDlg";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox minWeightTextBox;
|
|
private System.Windows.Forms.TextBox maxWeightTextBox;
|
|
private System.Windows.Forms.Label minWeightLabel;
|
|
private System.Windows.Forms.Label maxWeightLabel;
|
|
private System.Windows.Forms.Button okButton;
|
|
private System.Windows.Forms.Label asterixLabel;
|
|
}
|
|
} |