📄 form1.designer.cs
字号:
namespace BluetoothTest
{
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.menuItem1 = new System.Windows.Forms.MenuItem();
this.menuItem2 = new System.Windows.Forms.MenuItem();
this.label1 = new System.Windows.Forms.Label();
this.RadioState = new System.Windows.Forms.TextBox();
this.ToggleRadio = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.PairedDevices = new System.Windows.Forms.ListBox();
this.label3 = new System.Windows.Forms.Label();
this.InRange = new System.Windows.Forms.ListBox();
this.timer1 = new System.Windows.Forms.Timer();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.menuItem1);
this.mainMenu1.MenuItems.Add(this.menuItem2);
//
// menuItem1
//
this.menuItem1.Text = "Exit";
this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
//
// menuItem2
//
this.menuItem2.Text = "Refresh";
this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
//
// label1
//
this.label1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.label1.Location = new System.Drawing.Point(3, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(100, 20);
this.label1.Text = "Radio State:";
//
// RadioState
//
this.RadioState.Location = new System.Drawing.Point(121, 9);
this.RadioState.Name = "RadioState";
this.RadioState.ReadOnly = true;
this.RadioState.Size = new System.Drawing.Size(100, 21);
this.RadioState.TabIndex = 1;
this.RadioState.Text = "???";
//
// ToggleRadio
//
this.ToggleRadio.Location = new System.Drawing.Point(121, 36);
this.ToggleRadio.Name = "ToggleRadio";
this.ToggleRadio.Size = new System.Drawing.Size(58, 20);
this.ToggleRadio.TabIndex = 2;
this.ToggleRadio.Text = "Toggle";
this.ToggleRadio.Click += new System.EventHandler(this.ToggleRadio_Click);
//
// label2
//
this.label2.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.label2.Location = new System.Drawing.Point(3, 62);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(100, 20);
this.label2.Text = "Paired Devices";
//
// PairedDevices
//
this.PairedDevices.Location = new System.Drawing.Point(0, 85);
this.PairedDevices.Name = "PairedDevices";
this.PairedDevices.Size = new System.Drawing.Size(239, 72);
this.PairedDevices.TabIndex = 4;
//
// label3
//
this.label3.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.label3.Location = new System.Drawing.Point(3, 160);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(100, 20);
this.label3.Text = "In Range";
//
// InRange
//
this.InRange.Location = new System.Drawing.Point(4, 178);
this.InRange.Name = "InRange";
this.InRange.Size = new System.Drawing.Size(234, 72);
this.InRange.TabIndex = 6;
//
// timer1
//
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// 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.InRange);
this.Controls.Add(this.label3);
this.Controls.Add(this.PairedDevices);
this.Controls.Add(this.label2);
this.Controls.Add(this.ToggleRadio);
this.Controls.Add(this.RadioState);
this.Controls.Add(this.label1);
this.Menu = this.mainMenu1;
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox RadioState;
private System.Windows.Forms.MenuItem menuItem1;
private System.Windows.Forms.MenuItem menuItem2;
private System.Windows.Forms.Button ToggleRadio;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.ListBox PairedDevices;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ListBox InRange;
private System.Windows.Forms.Timer timer1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -