88 lines
3.5 KiB
C#
88 lines
3.5 KiB
C#
|
|
namespace DataStreamMeter
|
|||
|
|
{
|
|||
|
|
partial class GetDblValueDlg
|
|||
|
|
{
|
|||
|
|
/// <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.valueTextBox = new System.Windows.Forms.TextBox();
|
|||
|
|
this.okButton = new System.Windows.Forms.Button();
|
|||
|
|
this.cancelButton = new System.Windows.Forms.Button();
|
|||
|
|
this.SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// valueTextBox
|
|||
|
|
//
|
|||
|
|
this.valueTextBox.Location = new System.Drawing.Point(35, 20);
|
|||
|
|
this.valueTextBox.Name = "valueTextBox";
|
|||
|
|
this.valueTextBox.Size = new System.Drawing.Size(94, 20);
|
|||
|
|
this.valueTextBox.TabIndex = 0;
|
|||
|
|
//
|
|||
|
|
// okButton
|
|||
|
|
//
|
|||
|
|
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
|
this.okButton.Location = new System.Drawing.Point(216, 16);
|
|||
|
|
this.okButton.Name = "okButton";
|
|||
|
|
this.okButton.Size = new System.Drawing.Size(75, 29);
|
|||
|
|
this.okButton.TabIndex = 1;
|
|||
|
|
this.okButton.Text = "OK";
|
|||
|
|
this.okButton.UseVisualStyleBackColor = true;
|
|||
|
|
this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
|||
|
|
//
|
|||
|
|
// cancelButton
|
|||
|
|
//
|
|||
|
|
this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
|
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|||
|
|
this.cancelButton.Location = new System.Drawing.Point(306, 16);
|
|||
|
|
this.cancelButton.Name = "cancelButton";
|
|||
|
|
this.cancelButton.Size = new System.Drawing.Size(75, 29);
|
|||
|
|
this.cancelButton.TabIndex = 2;
|
|||
|
|
this.cancelButton.Text = "Cancel";
|
|||
|
|
this.cancelButton.UseVisualStyleBackColor = true;
|
|||
|
|
//
|
|||
|
|
// GetFlowDlg
|
|||
|
|
//
|
|||
|
|
this.AcceptButton = this.okButton;
|
|||
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
|
this.CancelButton = this.cancelButton;
|
|||
|
|
this.ClientSize = new System.Drawing.Size(396, 58);
|
|||
|
|
this.Controls.Add(this.cancelButton);
|
|||
|
|
this.Controls.Add(this.okButton);
|
|||
|
|
this.Controls.Add(this.valueTextBox);
|
|||
|
|
this.Name = "GetFlowDlg";
|
|||
|
|
this.Text = "Enter flow";
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
this.PerformLayout();
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
private System.Windows.Forms.TextBox valueTextBox;
|
|||
|
|
private System.Windows.Forms.Button okButton;
|
|||
|
|
private System.Windows.Forms.Button cancelButton;
|
|||
|
|
}
|
|||
|
|
}
|