MainForm.Designer.cs
上传用户:linger1010
上传日期:2008-12-08
资源大小:561k
文件大小:4k
- namespace SendingSms
- {
- partial class MainForm
- {
- /// <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))
- {
- m_outlookSession.Dispose();
- 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.m_lblReceiver = new System.Windows.Forms.Label();
- this.m_txtReceiver = new System.Windows.Forms.TextBox();
- this.m_lblMessage = new System.Windows.Forms.Label();
- this.m_txtMesage = new System.Windows.Forms.TextBox();
- this.m_btnSend = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // m_lblReceiver
- //
- this.m_lblReceiver.Location = new System.Drawing.Point(15, 11);
- this.m_lblReceiver.Name = "m_lblReceiver";
- this.m_lblReceiver.Size = new System.Drawing.Size(213, 20);
- this.m_lblReceiver.Text = "Receiver Number:";
- //
- // m_txtReceiver
- //
- this.m_txtReceiver.Location = new System.Drawing.Point(15, 35);
- this.m_txtReceiver.Name = "m_txtReceiver";
- this.m_txtReceiver.Size = new System.Drawing.Size(213, 21);
- this.m_txtReceiver.TabIndex = 1;
- //
- // m_lblMessage
- //
- this.m_lblMessage.Location = new System.Drawing.Point(15, 63);
- this.m_lblMessage.Name = "m_lblMessage";
- this.m_lblMessage.Size = new System.Drawing.Size(213, 20);
- this.m_lblMessage.Text = "Message:";
- //
- // m_txtMesage
- //
- this.m_txtMesage.AcceptsReturn = true;
- this.m_txtMesage.AcceptsTab = true;
- this.m_txtMesage.Location = new System.Drawing.Point(15, 87);
- this.m_txtMesage.Multiline = true;
- this.m_txtMesage.Name = "m_txtMesage";
- this.m_txtMesage.ScrollBars = System.Windows.Forms.ScrollBars.Both;
- this.m_txtMesage.Size = new System.Drawing.Size(213, 132);
- this.m_txtMesage.TabIndex = 3;
- //
- // m_btnSend
- //
- this.m_btnSend.Location = new System.Drawing.Point(156, 231);
- this.m_btnSend.Name = "m_btnSend";
- this.m_btnSend.Size = new System.Drawing.Size(72, 27);
- this.m_btnSend.TabIndex = 4;
- this.m_btnSend.Text = "Send";
- this.m_btnSend.Click += new System.EventHandler(this.m_btnSend_Click);
- //
- // MainForm
- //
- 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.m_btnSend);
- this.Controls.Add(this.m_txtMesage);
- this.Controls.Add(this.m_lblMessage);
- this.Controls.Add(this.m_txtReceiver);
- this.Controls.Add(this.m_lblReceiver);
- this.Menu = this.mainMenu1;
- this.Name = "MainForm";
- this.Text = "Sending SMS";
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Label m_lblReceiver;
- private System.Windows.Forms.TextBox m_txtReceiver;
- private System.Windows.Forms.Label m_lblMessage;
- private System.Windows.Forms.TextBox m_txtMesage;
- private System.Windows.Forms.Button m_btnSend;
- }
- }