📄 form1.designer.cs
字号:
namespace MessagingSample
{
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.mnuSave = new System.Windows.Forms.MenuItem();
this.menuItem2 = new System.Windows.Forms.MenuItem();
this.txtName = new System.Windows.Forms.TextBox();
this.txtCompany = new System.Windows.Forms.TextBox();
this.lblName = new System.Windows.Forms.Label();
this.lblCompany = new System.Windows.Forms.Label();
this.txtNumber = new System.Windows.Forms.TextBox();
this.lblNumber = new System.Windows.Forms.Label();
this.mqLocal = new System.Messaging.MessageQueue();
this.mqRemote = new System.Messaging.MessageQueue();
this.listBox1 = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.mnuSave);
this.mainMenu1.MenuItems.Add(this.menuItem2);
//
// mnuSave
//
this.mnuSave.Text = "Save";
this.mnuSave.Click += new System.EventHandler(this.mnuSave_Click);
//
// menuItem2
//
this.menuItem2.Text = "Menu";
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(109, 36);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(100, 21);
this.txtName.TabIndex = 0;
//
// txtCompany
//
this.txtCompany.Location = new System.Drawing.Point(109, 63);
this.txtCompany.Name = "txtCompany";
this.txtCompany.Size = new System.Drawing.Size(100, 21);
this.txtCompany.TabIndex = 1;
//
// lblName
//
this.lblName.Location = new System.Drawing.Point(3, 36);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(69, 20);
this.lblName.Text = "Name:";
//
// lblCompany
//
this.lblCompany.Location = new System.Drawing.Point(3, 63);
this.lblCompany.Name = "lblCompany";
this.lblCompany.Size = new System.Drawing.Size(100, 20);
this.lblCompany.Text = "Company Name:";
//
// txtNumber
//
this.txtNumber.Location = new System.Drawing.Point(109, 90);
this.txtNumber.Name = "txtNumber";
this.txtNumber.Size = new System.Drawing.Size(100, 21);
this.txtNumber.TabIndex = 4;
//
// lblNumber
//
this.lblNumber.Location = new System.Drawing.Point(3, 91);
this.lblNumber.Name = "lblNumber";
this.lblNumber.Size = new System.Drawing.Size(100, 20);
this.lblNumber.Text = "Number:";
//
// mqLocal
//
this.mqLocal.Formatter = new System.Messaging.XmlMessageFormatter(new string[0]);
this.mqLocal.Path = ".\\Private$\\Prospects";
//
// mqRemote
//
this.mqRemote.Formatter = new System.Messaging.XmlMessageFormatter(new string[0]);
this.mqRemote.Path = "FormatName:Direct=OS:TOSH\\Private$\\Prospects";
//
// listBox1
//
this.listBox1.Location = new System.Drawing.Point(3, 123);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(234, 142);
this.listBox1.TabIndex = 11;
//
// 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.listBox1);
this.Controls.Add(this.lblNumber);
this.Controls.Add(this.txtNumber);
this.Controls.Add(this.lblCompany);
this.Controls.Add(this.lblName);
this.Controls.Add(this.txtCompany);
this.Controls.Add(this.txtName);
this.Menu = this.mainMenu1;
this.MinimizeBox = false;
this.Name = "Form1";
this.Text = "Messaging";
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 txtName;
private System.Windows.Forms.TextBox txtCompany;
private System.Windows.Forms.Label lblName;
private System.Windows.Forms.Label lblCompany;
private System.Windows.Forms.TextBox txtNumber;
private System.Windows.Forms.Label lblNumber;
private System.Windows.Forms.MenuItem mnuSave;
private System.Windows.Forms.MenuItem menuItem2;
private System.Messaging.MessageQueue mqLocal;
private System.Messaging.MessageQueue mqRemote;
private System.Windows.Forms.ListBox listBox1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -