DnsClientForm/DnsClientForm.Designer.cs
2025-04-11 01:18:45 +08:00

154 lines
7.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace DnsClient
{
partial class DnsClientForm
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows
/// <summary>
/// 设计器支持所需的方法 - 不要修改
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.Domain_Txt = new System.Windows.Forms.Label();
this.Domain_Text = new System.Windows.Forms.TextBox();
this.Select_Txt = new System.Windows.Forms.Label();
this.Select_Text = new System.Windows.Forms.RichTextBox();
this.Start_Button = new System.Windows.Forms.Button();
this.Exit_Button = new System.Windows.Forms.Button();
this.Result_Text = new System.Windows.Forms.RichTextBox();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// Domain_Txt
//
this.Domain_Txt.AutoSize = true;
this.Domain_Txt.Location = new System.Drawing.Point(12, 9);
this.Domain_Txt.Name = "Domain_Txt";
this.Domain_Txt.Size = new System.Drawing.Size(35, 12);
this.Domain_Txt.TabIndex = 0;
this.Domain_Txt.Text = "域名:";
//
// Domain_Text
//
this.Domain_Text.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.Domain_Text.Location = new System.Drawing.Point(53, 6);
this.Domain_Text.Name = "Domain_Text";
this.Domain_Text.Size = new System.Drawing.Size(499, 21);
this.Domain_Text.TabIndex = 1;
//
// Select_Txt
//
this.Select_Txt.AutoSize = true;
this.Select_Txt.Location = new System.Drawing.Point(12, 41);
this.Select_Txt.Name = "Select_Txt";
this.Select_Txt.Size = new System.Drawing.Size(35, 12);
this.Select_Txt.TabIndex = 2;
this.Select_Txt.Text = "查询:";
//
// Select_Text
//
this.Select_Text.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.Select_Text.Location = new System.Drawing.Point(53, 41);
this.Select_Text.Name = "Select_Text";
this.Select_Text.Size = new System.Drawing.Size(499, 284);
this.Select_Text.TabIndex = 3;
this.Select_Text.Text = "";
//
// Start_Button
//
this.Start_Button.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.Start_Button.Location = new System.Drawing.Point(12, 449);
this.Start_Button.Name = "Start_Button";
this.Start_Button.Size = new System.Drawing.Size(75, 23);
this.Start_Button.TabIndex = 4;
this.Start_Button.Text = "开始";
this.Start_Button.UseVisualStyleBackColor = true;
this.Start_Button.Click += new System.EventHandler(this.Start_Button_Click);
//
// Exit_Button
//
this.Exit_Button.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.Exit_Button.Location = new System.Drawing.Point(477, 449);
this.Exit_Button.Name = "Exit_Button";
this.Exit_Button.Size = new System.Drawing.Size(75, 23);
this.Exit_Button.TabIndex = 5;
this.Exit_Button.Text = "退出";
this.Exit_Button.UseVisualStyleBackColor = true;
this.Exit_Button.Click += new System.EventHandler(this.Exit_Button_Click);
//
// Result_Text
//
this.Result_Text.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.Result_Text.Location = new System.Drawing.Point(53, 331);
this.Result_Text.Name = "Result_Text";
this.Result_Text.Size = new System.Drawing.Size(499, 112);
this.Result_Text.TabIndex = 6;
this.Result_Text.Text = "";
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 334);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 12);
this.label1.TabIndex = 7;
this.label1.Text = "结果:";
//
// DnsClientForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(564, 484);
this.Controls.Add(this.label1);
this.Controls.Add(this.Result_Text);
this.Controls.Add(this.Exit_Button);
this.Controls.Add(this.Start_Button);
this.Controls.Add(this.Select_Text);
this.Controls.Add(this.Select_Txt);
this.Controls.Add(this.Domain_Text);
this.Controls.Add(this.Domain_Txt);
this.Name = "DnsClientForm";
this.Text = "DnsClient";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label Domain_Txt;
private System.Windows.Forms.TextBox Domain_Text;
private System.Windows.Forms.Label Select_Txt;
private System.Windows.Forms.RichTextBox Select_Text;
private System.Windows.Forms.Button Start_Button;
private System.Windows.Forms.Button Exit_Button;
private System.Windows.Forms.RichTextBox Result_Text;
private System.Windows.Forms.Label label1;
}
}