PassWordConfirm.Designer.cs 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. namespace UAS_LabelMachine
  2. {
  3. partial class PassWordConfirm
  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.PassWord = new UAS_LabelMachine.CustomControl.EnterTextBox();
  30. this.Confirm = 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("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  37. this.label1.Location = new System.Drawing.Point(132, 106);
  38. this.label1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  39. this.label1.Name = "label1";
  40. this.label1.Size = new System.Drawing.Size(71, 36);
  41. this.label1.TabIndex = 108;
  42. this.label1.Text = "密码";
  43. //
  44. // PassWord
  45. //
  46. this.PassWord.ID = null;
  47. this.PassWord.Location = new System.Drawing.Point(228, 106);
  48. this.PassWord.Margin = new System.Windows.Forms.Padding(6, 4, 6, 4);
  49. this.PassWord.Name = "PassWord";
  50. this.PassWord.PasswordChar = '*';
  51. this.PassWord.Size = new System.Drawing.Size(286, 35);
  52. this.PassWord.Str = null;
  53. this.PassWord.Str1 = null;
  54. this.PassWord.Str2 = null;
  55. this.PassWord.TabIndex = 109;
  56. //
  57. // Confirm
  58. //
  59. this.Confirm.Location = new System.Drawing.Point(276, 188);
  60. this.Confirm.Margin = new System.Windows.Forms.Padding(6);
  61. this.Confirm.Name = "Confirm";
  62. this.Confirm.Size = new System.Drawing.Size(150, 46);
  63. this.Confirm.TabIndex = 111;
  64. this.Confirm.Text = "确认";
  65. this.Confirm.UseVisualStyleBackColor = true;
  66. this.Confirm.Click += new System.EventHandler(this.Confirm_Click);
  67. //
  68. // PassWordConfirm
  69. //
  70. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  71. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  72. this.ClientSize = new System.Drawing.Size(696, 306);
  73. this.Controls.Add(this.Confirm);
  74. this.Controls.Add(this.PassWord);
  75. this.Controls.Add(this.label1);
  76. this.Margin = new System.Windows.Forms.Padding(6);
  77. this.Name = "PassWordConfirm";
  78. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  79. this.Text = "密码确认";
  80. this.Load += new System.EventHandler(this.ComInfoSet_Load);
  81. this.ResumeLayout(true);
  82. this.PerformLayout();
  83. }
  84. #endregion
  85. private System.Windows.Forms.Label label1;
  86. private CustomControl.EnterTextBox PassWord;
  87. private System.Windows.Forms.Button Confirm;
  88. }
  89. }