C# Builder 实现POP3信箱的监视__教程 |
|
日期:2007-5-20 1:21:23 人气:178 [大 中 小] |
|
|
|
// }
/// <summary> /// Clean up any resources being used. /// </summary> protected override void Dispose (bool disposing) { if (disposing) { if (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.components = new System.ComponentModel.Container(); System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(WinForm)); this.button1 = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.tB_server = new System.Windows.Forms.TextBox(); this.tB_user = new System.Windows.Forms.TextBox(); this.tB_pwd = new System.Windows.Forms.TextBox(); this.tB_status = new System.Windows.Forms.TextBox(); this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components); this.contextMenu1 = new System.Windows.Forms.ContextMenu(); this.menuItem1 = new System.Windows.Forms.MenuItem(); this.menuItem2 = new System.Windows.Forms.MenuItem(); this.menuItem3 = new System.Windows.Forms.MenuItem(); this.button2 = new System.Windows.Forms.Button(); this.timer1 = new System.Windows.Forms.Timer(this.components); this.tB_mins = new System.Windows.Forms.TextBox(); this.label4 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.button3 = new System.Windows.Forms.Button(); this.cB_autorun = new System.Windows.Forms.CheckBox(); this.SuspendLayout(); // // button1 // this.button1.Location = new System.Drawing.Point(152, 176); this.button1.Name = "button1"; this.button1.TabIndex = 0; this.button1.Text = "取邮件"; this.button1.Click += new System.EventHandler(this.button1_Click); // // label1 // this.label1.Location = new System.Drawing.Point(24, 32); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(80, 23); this.label1.TabIndex = 1; this.label1.Text = "邮件服务器:"; // // label2 // this.label2.Location = new System.Drawing.Point(48, 64); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(56, 23); this.label2.TabIndex = 2; this.label2.Text = "用户名:"; // // label3 // this.label3.Location = new System.Drawing.Point(58, 96); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(48, 23); this.label3.TabIndex = 3; this.label3.Text = "密码:"; // // tB_server // this.tB_server.Location = new System.Drawing.Point(112, 24); this.tB_server.Name = "tB_server"; |
|
出处:本站原创 作者:佚名 |
|
|