AirScout/CATCheck/FrequencyOfToneDlg.Designer.cs

130 wiersze
4.8 KiB
C#

namespace CATCheck
{
partial class FrequencyOfToneDlg
{
/// <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.ud_Tone = new System.Windows.Forms.NumericUpDown();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.tb_Freq = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.ud_Tone)).BeginInit();
this.SuspendLayout();
//
// ud_Tone
//
this.ud_Tone.Location = new System.Drawing.Point(271, 12);
this.ud_Tone.Maximum = new decimal(new int[] {
10000,
0,
0,
0});
this.ud_Tone.Name = "ud_Tone";
this.ud_Tone.Size = new System.Drawing.Size(81, 20);
this.ud_Tone.TabIndex = 0;
this.ud_Tone.Value = new decimal(new int[] {
1,
0,
0,
0});
this.ud_Tone.ValueChanged += new System.EventHandler(this.ud_Tone_ValueChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(35, 14);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 13);
this.label1.TabIndex = 1;
this.label1.Text = "Tone:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(358, 14);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(20, 13);
this.label2.TabIndex = 2;
this.label2.Text = "Hz";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(35, 44);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(96, 13);
this.label3.TabIndex = 3;
this.label3.Text = "Frequency of tone:";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(358, 44);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(20, 13);
this.label4.TabIndex = 4;
this.label4.Text = "Hz";
//
// tb_Freq
//
this.tb_Freq.Location = new System.Drawing.Point(177, 41);
this.tb_Freq.Name = "tb_Freq";
this.tb_Freq.ReadOnly = true;
this.tb_Freq.Size = new System.Drawing.Size(175, 20);
this.tb_Freq.TabIndex = 5;
//
// FrequencyOfToneDlg
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(390, 90);
this.Controls.Add(this.tb_Freq);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.ud_Tone);
this.Name = "FrequencyOfToneDlg";
this.Text = "Calculate Frequency of Tone";
((System.ComponentModel.ISupportInitialize)(this.ud_Tone)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.NumericUpDown ud_Tone;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox tb_Freq;
}
}