AskPasswordForm.Designer.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. namespace FastReport.Forms
  2. {
  3. partial class AskPasswordForm
  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.lblPassword = new System.Windows.Forms.Label();
  30. this.tbPassword = new System.Windows.Forms.TextBox();
  31. ((System.ComponentModel.ISupportInitialize)(this.pbPicture)).BeginInit();
  32. this.SuspendLayout();
  33. //
  34. // btnOk
  35. //
  36. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  37. this.btnOk.Location = new System.Drawing.Point(140, 96);
  38. //
  39. // btnCancel
  40. //
  41. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  42. this.btnCancel.Location = new System.Drawing.Point(220, 96);
  43. //
  44. // pbPicture
  45. //
  46. this.pbPicture.Location = new System.Drawing.Point(12, 12);
  47. this.pbPicture.Name = "pbPicture";
  48. this.pbPicture.Size = new System.Drawing.Size(52, 80);
  49. this.pbPicture.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
  50. this.pbPicture.TabIndex = 1;
  51. this.pbPicture.TabStop = false;
  52. //
  53. // lblPassword
  54. //
  55. this.lblPassword.AutoSize = true;
  56. this.lblPassword.Location = new System.Drawing.Point(86, 12);
  57. this.lblPassword.Name = "lblPassword";
  58. this.lblPassword.Size = new System.Drawing.Size(172, 39);
  59. this.lblPassword.TabIndex = 2;
  60. this.lblPassword.Text = "This report is password protected.\r\n\r\nPlease enter the password:";
  61. //
  62. // tbPassword
  63. //
  64. this.tbPassword.Location = new System.Drawing.Point(86, 60);
  65. this.tbPassword.Name = "tbPassword";
  66. this.tbPassword.Size = new System.Drawing.Size(206, 20);
  67. this.tbPassword.TabIndex = 3;
  68. this.tbPassword.UseSystemPasswordChar = true;
  69. //
  70. // AskPasswordForm
  71. //
  72. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  73. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  74. this.ClientSize = new System.Drawing.Size(304, 128);
  75. this.Controls.Add(this.pbPicture);
  76. this.Controls.Add(this.lblPassword);
  77. this.Controls.Add(this.tbPassword);
  78. this.Name = "AskPasswordForm";
  79. this.Text = "Password";
  80. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.AskPasswordForm_FormClosed);
  81. this.Shown += new System.EventHandler(this.AskPasswordForm_Shown);
  82. this.Controls.SetChildIndex(this.tbPassword, 0);
  83. this.Controls.SetChildIndex(this.btnOk, 0);
  84. this.Controls.SetChildIndex(this.lblPassword, 0);
  85. this.Controls.SetChildIndex(this.btnCancel, 0);
  86. this.Controls.SetChildIndex(this.pbPicture, 0);
  87. ((System.ComponentModel.ISupportInitialize)(this.pbPicture)).EndInit();
  88. this.ResumeLayout(false);
  89. this.PerformLayout();
  90. }
  91. #endregion
  92. private System.Windows.Forms.PictureBox pbPicture;
  93. private System.Windows.Forms.Label lblPassword;
  94. private System.Windows.Forms.TextBox tbPassword;
  95. }
  96. }