www.pudn.com > SMSManagement.rar > SendSMS.designer.cs
namespace SMSManagement
{
partial class SendSMS
{
///
/// 必需的设计器变量。
///
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
///
/// 清理所有正在使用的资源。
///
/// 如果应释放托管资源,为 true;否则为 false。
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
///
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
///
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.textBox1 = new System.Windows.Forms.TextBox();
this.splitter1 = new System.Windows.Forms.Splitter();
this.listView1 = new System.Windows.Forms.ListView();
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.menuItem1);
this.mainMenu1.MenuItems.Add(this.menuItem2);
//
// menuItem1
//
this.menuItem1.Text = "发送";
this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
//
// menuItem2
//
this.menuItem2.Text = "取消";
this.menuItem2.Click += new System.EventHandler(this.menuItem2_Click);
//
// textBox1
//
this.textBox1.Dock = System.Windows.Forms.DockStyle.Top;
this.textBox1.Location = new System.Drawing.Point(0, 0);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBox1.Size = new System.Drawing.Size(240, 99);
this.textBox1.TabIndex = 2;
//
// splitter1
//
this.splitter1.Dock = System.Windows.Forms.DockStyle.Top;
this.splitter1.Location = new System.Drawing.Point(0, 99);
this.splitter1.Name = "splitter1";
this.splitter1.Size = new System.Drawing.Size(240, 3);
//
// listView1
//
this.listView1.CheckBoxes = true;
this.listView1.Columns.Add(this.columnHeader1);
this.listView1.Columns.Add(this.columnHeader2);
this.listView1.Columns.Add(this.columnHeader3);
this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.listView1.FullRowSelect = true;
this.listView1.Location = new System.Drawing.Point(0, 102);
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(240, 166);
this.listView1.TabIndex = 4;
this.listView1.View = System.Windows.Forms.View.Details;
//
// columnHeader1
//
this.columnHeader1.Text = "姓名";
this.columnHeader1.Width = 74;
//
// columnHeader2
//
this.columnHeader2.Text = "类型";
this.columnHeader2.Width = 60;
//
// columnHeader3
//
this.columnHeader3.Text = "号码";
this.columnHeader3.Width = 107;
//
// SendSMS
//
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.listView1);
this.Controls.Add(this.splitter1);
this.Controls.Add(this.textBox1);
this.Menu = this.mainMenu1;
this.MinimizeBox = false;
this.Name = "SendSMS";
this.Text = "信息发送";
this.Load += new System.EventHandler(this.SendSMS_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Splitter splitter1;
private System.Windows.Forms.MenuItem menuItem1;
private System.Windows.Forms.MenuItem menuItem2;
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.ColumnHeader columnHeader1;
private System.Windows.Forms.ColumnHeader columnHeader2;
private System.Windows.Forms.ColumnHeader columnHeader3;
}
}