Form2.Designer.cs
上传用户:linger1010
上传日期:2008-12-08
资源大小:561k
文件大小:4k
源码类别:

Windows Mobile

开发平台:

C#

  1. namespace DataTransport
  2. {
  3. partial class Form2
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. private System.Windows.Forms.MainMenu mainMenu1;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if(disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.mainMenu1 = new System.Windows.Forms.MainMenu();
  30. this.m_txtUserName = new System.Windows.Forms.TextBox();
  31. this.m_lblUserName = new System.Windows.Forms.Label();
  32. this.m_lblPassword = new System.Windows.Forms.Label();
  33. this.m_txtPassword = new System.Windows.Forms.TextBox();
  34. this.m_btnLogin = new System.Windows.Forms.Button();
  35. this.m_btnCancel = new System.Windows.Forms.Button();
  36. this.SuspendLayout();
  37. // 
  38. // m_txtUserName
  39. // 
  40. this.m_txtUserName.Location = new System.Drawing.Point(25, 36);
  41. this.m_txtUserName.Name = "m_txtUserName";
  42. this.m_txtUserName.Size = new System.Drawing.Size(189, 21);
  43. this.m_txtUserName.TabIndex = 0;
  44. // 
  45. // m_lblUserName
  46. // 
  47. this.m_lblUserName.Location = new System.Drawing.Point(25, 10);
  48. this.m_lblUserName.Name = "m_lblUserName";
  49. this.m_lblUserName.Size = new System.Drawing.Size(189, 20);
  50. this.m_lblUserName.Text = "User Name:";
  51. // 
  52. // m_lblPassword
  53. // 
  54. this.m_lblPassword.Location = new System.Drawing.Point(25, 64);
  55. this.m_lblPassword.Name = "m_lblPassword";
  56. this.m_lblPassword.Size = new System.Drawing.Size(189, 20);
  57. this.m_lblPassword.Text = "Password:";
  58. // 
  59. // m_txtPassword
  60. // 
  61. this.m_txtPassword.Location = new System.Drawing.Point(25, 88);
  62. this.m_txtPassword.Name = "m_txtPassword";
  63. this.m_txtPassword.PasswordChar = '*';
  64. this.m_txtPassword.Size = new System.Drawing.Size(189, 21);
  65. this.m_txtPassword.TabIndex = 3;
  66. // 
  67. // m_btnLogin
  68. // 
  69. this.m_btnLogin.Location = new System.Drawing.Point(25, 115);
  70. this.m_btnLogin.Name = "m_btnLogin";
  71. this.m_btnLogin.Size = new System.Drawing.Size(72, 20);
  72. this.m_btnLogin.TabIndex = 4;
  73. this.m_btnLogin.Text = "Login";
  74. this.m_btnLogin.Click += new System.EventHandler(this.m_btnLogin_Click);
  75. // 
  76. // m_btnCancel
  77. // 
  78. this.m_btnCancel.Location = new System.Drawing.Point(104, 116);
  79. this.m_btnCancel.Name = "m_btnCancel";
  80. this.m_btnCancel.Size = new System.Drawing.Size(72, 20);
  81. this.m_btnCancel.TabIndex = 5;
  82. this.m_btnCancel.Text = "Cancel";
  83. this.m_btnCancel.Click += new System.EventHandler(this.m_btnCancel_Click);
  84. // 
  85. // Form2
  86. // 
  87. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  88. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  89. this.AutoScroll = true;
  90. this.ClientSize = new System.Drawing.Size(240, 268);
  91. this.Controls.Add(this.m_btnCancel);
  92. this.Controls.Add(this.m_btnLogin);
  93. this.Controls.Add(this.m_txtPassword);
  94. this.Controls.Add(this.m_lblPassword);
  95. this.Controls.Add(this.m_lblUserName);
  96. this.Controls.Add(this.m_txtUserName);
  97. this.Menu = this.mainMenu1;
  98. this.Name = "Form2";
  99. this.Text = "Form2";
  100. this.ResumeLayout(false);
  101. }
  102. #endregion
  103. private System.Windows.Forms.TextBox m_txtUserName;
  104. private System.Windows.Forms.Label m_lblUserName;
  105. private System.Windows.Forms.Label m_lblPassword;
  106. private System.Windows.Forms.TextBox m_txtPassword;
  107. private System.Windows.Forms.Button m_btnLogin;
  108. private System.Windows.Forms.Button m_btnCancel;
  109. }
  110. }