AskLoginPasswordForm.Designer.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. namespace FastReport.Forms
  2. {
  3. partial class AskLoginPasswordForm
  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.pbPicture = new System.Windows.Forms.PictureBox();
  29. this.tbPassword = new System.Windows.Forms.TextBox();
  30. this.lblLogin = new System.Windows.Forms.Label();
  31. this.lblPassword = new System.Windows.Forms.Label();
  32. this.tbLogin = new System.Windows.Forms.TextBox();
  33. ((System.ComponentModel.ISupportInitialize)(this.pbPicture)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // btnOk
  37. //
  38. this.btnOk.Location = new System.Drawing.Point(144, 84);
  39. this.btnOk.TabIndex = 2;
  40. //
  41. // btnCancel
  42. //
  43. this.btnCancel.Location = new System.Drawing.Point(224, 84);
  44. this.btnCancel.TabIndex = 3;
  45. //
  46. // pbPicture
  47. //
  48. this.pbPicture.Location = new System.Drawing.Point(12, 12);
  49. this.pbPicture.Name = "pbPicture";
  50. this.pbPicture.Size = new System.Drawing.Size(52, 80);
  51. this.pbPicture.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
  52. this.pbPicture.TabIndex = 4;
  53. this.pbPicture.TabStop = false;
  54. //
  55. // tbPassword
  56. //
  57. this.tbPassword.Location = new System.Drawing.Point(196, 40);
  58. this.tbPassword.Name = "tbPassword";
  59. this.tbPassword.Size = new System.Drawing.Size(100, 20);
  60. this.tbPassword.TabIndex = 1;
  61. this.tbPassword.UseSystemPasswordChar = true;
  62. //
  63. // lblLogin
  64. //
  65. this.lblLogin.AutoSize = true;
  66. this.lblLogin.Location = new System.Drawing.Point(80, 16);
  67. this.lblLogin.Name = "lblLogin";
  68. this.lblLogin.Size = new System.Drawing.Size(35, 13);
  69. this.lblLogin.TabIndex = 7;
  70. this.lblLogin.Text = "label1";
  71. //
  72. // lblPassword
  73. //
  74. this.lblPassword.AutoSize = true;
  75. this.lblPassword.Location = new System.Drawing.Point(80, 44);
  76. this.lblPassword.Name = "lblPassword";
  77. this.lblPassword.Size = new System.Drawing.Size(35, 13);
  78. this.lblPassword.TabIndex = 8;
  79. this.lblPassword.Text = "label2";
  80. //
  81. // tbLogin
  82. //
  83. this.tbLogin.Location = new System.Drawing.Point(196, 12);
  84. this.tbLogin.Name = "tbLogin";
  85. this.tbLogin.Size = new System.Drawing.Size(100, 20);
  86. this.tbLogin.TabIndex = 0;
  87. //
  88. // AskLoginPasswordForm
  89. //
  90. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  91. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  92. this.ClientSize = new System.Drawing.Size(309, 118);
  93. this.Controls.Add(this.tbLogin);
  94. this.Controls.Add(this.lblPassword);
  95. this.Controls.Add(this.lblLogin);
  96. this.Controls.Add(this.pbPicture);
  97. this.Controls.Add(this.tbPassword);
  98. this.Name = "AskLoginPasswordForm";
  99. this.Text = "Database Login";
  100. this.TopMost = true;
  101. this.Controls.SetChildIndex(this.btnCancel, 0);
  102. this.Controls.SetChildIndex(this.btnOk, 0);
  103. this.Controls.SetChildIndex(this.tbPassword, 0);
  104. this.Controls.SetChildIndex(this.pbPicture, 0);
  105. this.Controls.SetChildIndex(this.lblLogin, 0);
  106. this.Controls.SetChildIndex(this.lblPassword, 0);
  107. this.Controls.SetChildIndex(this.tbLogin, 0);
  108. ((System.ComponentModel.ISupportInitialize)(this.pbPicture)).EndInit();
  109. this.ResumeLayout(false);
  110. this.PerformLayout();
  111. }
  112. #endregion
  113. private System.Windows.Forms.PictureBox pbPicture;
  114. private System.Windows.Forms.TextBox tbPassword;
  115. private System.Windows.Forms.Label lblLogin;
  116. private System.Windows.Forms.Label lblPassword;
  117. private System.Windows.Forms.TextBox tbLogin;
  118. }
  119. }