namespace PairingAndPortsCF{
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.listBox1 = new System.Windows.Forms.ListBox();
this.listBox2 = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.mnuRefresh = new System.Windows.Forms.MenuItem();
this.cmPair = new System.Windows.Forms.ContextMenu();
this.mnuPair = new System.Windows.Forms.MenuItem();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.mnuRefresh);
//
// listBox1
//
this.listBox1.ContextMenu = this.cmPair;
this.listBox1.Location = new System.Drawing.Point(4, 25);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(233, 100);
this.listBox1.TabIndex = 0;
//
// listBox2
//
this.listBox2.Location = new System.Drawing.Point(3, 165);
this.listBox2.Name = "listBox2";
this.listBox2.Size = new System.Drawing.Size(233, 100);
this.listBox2.TabIndex = 1;
//
// label1
//
this.label1.Location = new System.Drawing.Point(3, 144);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(100, 18);
this.label1.Text = "Paired:";
//
// label2
//
this.label2.Location = new System.Drawing.Point(4, 4);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(100, 18);
this.label2.Text = "Discovered:";
//
// mnuRefresh
//
this.mnuRefresh.Text = "Refresh";
this.mnuRefresh.Click += new System.EventHandler(this.mnuRefresh_Click);
//
// cmPair
//
this.cmPair.MenuItems.Add(this.mnuPair);
//
// mnuPair
//
this.mnuPair.Text = "Pair";
this.mnuPair.Click += new System.EventHandler(this.mnuPair_Click);
//
// 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.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.listBox2);
this.Controls.Add(this.listBox1);
this.Menu = this.mainMenu1;
this.MinimizeBox = false;
this.Name = "Form1";
this.Text = "Pairing and Ports";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.ListBox listBox2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.MenuItem mnuRefresh;
private System.Windows.Forms.ContextMenu cmPair;
private System.Windows.Forms.MenuItem mnuPair;
}
}
|