📄 form1.designer.cs
字号:
namespace VoiceCall
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.txtPhoneNumber = new System.Windows.Forms.TextBox();
this.btnCall = new System.Windows.Forms.Button();
this.chkFlight = new System.Windows.Forms.CheckBox();
this.btnRasConnections = new System.Windows.Forms.Button();
this.btnRas = new System.Windows.Forms.Button();
this.btnHangup = new System.Windows.Forms.Button();
this.txtRas = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// txtPhoneNumber
//
this.txtPhoneNumber.Location = new System.Drawing.Point(3, 3);
this.txtPhoneNumber.Name = "txtPhoneNumber";
this.txtPhoneNumber.Size = new System.Drawing.Size(154, 21);
this.txtPhoneNumber.TabIndex = 0;
//
// btnCall
//
this.btnCall.Location = new System.Drawing.Point(163, 4);
this.btnCall.Name = "btnCall";
this.btnCall.Size = new System.Drawing.Size(72, 20);
this.btnCall.TabIndex = 1;
this.btnCall.Text = "Call";
this.btnCall.Click += new System.EventHandler(this.btnCall_Click);
//
// chkFlight
//
this.chkFlight.Location = new System.Drawing.Point(15, 48);
this.chkFlight.Name = "chkFlight";
this.chkFlight.Size = new System.Drawing.Size(100, 20);
this.chkFlight.TabIndex = 2;
this.chkFlight.Text = "Flight Mode";
this.chkFlight.CheckStateChanged += new System.EventHandler(this.chkFlight_CheckStateChanged);
//
// btnRasConnections
//
this.btnRasConnections.Location = new System.Drawing.Point(3, 85);
this.btnRasConnections.Name = "btnRasConnections";
this.btnRasConnections.Size = new System.Drawing.Size(154, 20);
this.btnRasConnections.TabIndex = 3;
this.btnRasConnections.Text = "Enum Connections";
this.btnRasConnections.Click += new System.EventHandler(this.btnRasConnections_Click);
//
// btnRas
//
this.btnRas.Location = new System.Drawing.Point(163, 126);
this.btnRas.Name = "btnRas";
this.btnRas.Size = new System.Drawing.Size(72, 20);
this.btnRas.TabIndex = 5;
this.btnRas.Text = "RasDial";
this.btnRas.Click += new System.EventHandler(this.btnRas_Click);
//
// btnHangup
//
this.btnHangup.Location = new System.Drawing.Point(163, 152);
this.btnHangup.Name = "btnHangup";
this.btnHangup.Size = new System.Drawing.Size(72, 20);
this.btnHangup.TabIndex = 6;
this.btnHangup.Text = "Hangup";
this.btnHangup.Click += new System.EventHandler(this.btnHangup_Click);
//
// txtRas
//
this.txtRas.Location = new System.Drawing.Point(3, 126);
this.txtRas.Name = "txtRas";
this.txtRas.Size = new System.Drawing.Size(154, 21);
this.txtRas.TabIndex = 7;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.txtRas);
this.Controls.Add(this.btnHangup);
this.Controls.Add(this.btnRas);
this.Controls.Add(this.btnRasConnections);
this.Controls.Add(this.chkFlight);
this.Controls.Add(this.btnCall);
this.Controls.Add(this.txtPhoneNumber);
this.Menu = this.mainMenu1;
this.MinimizeBox = false;
this.Name = "Form1";
this.Text = "Voice Call";
this.Closing += new System.ComponentModel.CancelEventHandler(this.Form1_Closing);
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox txtPhoneNumber;
private System.Windows.Forms.Button btnCall;
private System.Windows.Forms.CheckBox chkFlight;
private System.Windows.Forms.Button btnRasConnections;
private System.Windows.Forms.Button btnRas;
private System.Windows.Forms.Button btnHangup;
private System.Windows.Forms.TextBox txtRas;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -