PromptForm.Designer.cs 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. namespace PMSUI
  2. {
  3. partial class PromptForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.label1 = new System.Windows.Forms.Label();
  29. this.txtPassword = new System.Windows.Forms.TextBox();
  30. this.btConfirm = new System.Windows.Forms.Button();
  31. this.SuspendLayout();
  32. //
  33. // label1
  34. //
  35. this.label1.AutoSize = true;
  36. this.label1.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold);
  37. this.label1.Location = new System.Drawing.Point(147, 26);
  38. this.label1.Name = "label1";
  39. this.label1.Size = new System.Drawing.Size(94, 19);
  40. this.label1.TabIndex = 0;
  41. this.label1.Text = "请输入密码";
  42. //
  43. // txtPassword
  44. //
  45. this.txtPassword.Location = new System.Drawing.Point(65, 61);
  46. this.txtPassword.Name = "txtPassword";
  47. this.txtPassword.PasswordChar = '*';
  48. this.txtPassword.Size = new System.Drawing.Size(263, 21);
  49. this.txtPassword.TabIndex = 1;
  50. this.txtPassword.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPassword_KeyDown);
  51. //
  52. // btConfirm
  53. //
  54. this.btConfirm.Location = new System.Drawing.Point(153, 103);
  55. this.btConfirm.Name = "btConfirm";
  56. this.btConfirm.Size = new System.Drawing.Size(75, 29);
  57. this.btConfirm.TabIndex = 2;
  58. this.btConfirm.Text = "确认";
  59. this.btConfirm.UseVisualStyleBackColor = true;
  60. this.btConfirm.Click += new System.EventHandler(this.btConfirm_Click);
  61. //
  62. // PromptForm
  63. //
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  66. this.BackColor = System.Drawing.Color.Turquoise;
  67. this.ClientSize = new System.Drawing.Size(385, 155);
  68. this.Controls.Add(this.btConfirm);
  69. this.Controls.Add(this.txtPassword);
  70. this.Controls.Add(this.label1);
  71. this.Name = "PromptForm";
  72. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  73. this.Text = "提示";
  74. this.TopMost = true;
  75. this.ResumeLayout(false);
  76. this.PerformLayout();
  77. }
  78. #endregion
  79. private System.Windows.Forms.Label label1;
  80. private System.Windows.Forms.TextBox txtPassword;
  81. private System.Windows.Forms.Button btConfirm;
  82. }
  83. }