MessageBoxWithEditorForm.Designer.cs 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. namespace FastReport.Forms
  2. {
  3. partial class MessageBoxWithEditorForm
  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.tbMessage = new System.Windows.Forms.TextBox();
  29. this.lbDescription = new System.Windows.Forms.Label();
  30. this.SuspendLayout();
  31. //
  32. // btnOk
  33. //
  34. this.btnOk.Location = new System.Drawing.Point(248, 267);
  35. this.btnOk.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6);
  36. //
  37. // btnCancel
  38. //
  39. this.btnCancel.Location = new System.Drawing.Point(161, 267);
  40. this.btnCancel.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6);
  41. this.btnCancel.Visible = false;
  42. //
  43. // tbMessage
  44. //
  45. this.tbMessage.AcceptsReturn = true;
  46. this.tbMessage.Location = new System.Drawing.Point(10, 52);
  47. this.tbMessage.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  48. this.tbMessage.Multiline = true;
  49. this.tbMessage.Name = "tbMessage";
  50. this.tbMessage.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  51. this.tbMessage.Size = new System.Drawing.Size(314, 206);
  52. this.tbMessage.TabIndex = 1;
  53. //
  54. // lbDescription
  55. //
  56. this.lbDescription.Location = new System.Drawing.Point(10, 13);
  57. this.lbDescription.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  58. this.lbDescription.Name = "lbDescription";
  59. this.lbDescription.Size = new System.Drawing.Size(313, 35);
  60. this.lbDescription.TabIndex = 2;
  61. this.lbDescription.Text = "Replace \'report1.fpx report2.fpx ... reportN.fpx\' with your own reports and copy " +
  62. "the following comands:";
  63. //
  64. // MessageBoxWithEditorForm
  65. //
  66. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  67. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  68. this.ClientSize = new System.Drawing.Size(333, 301);
  69. this.Controls.Add(this.lbDescription);
  70. this.Controls.Add(this.tbMessage);
  71. this.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6);
  72. this.Name = "MessageBoxWithEditorForm";
  73. this.Text = "MessageBoxWithEditorForm";
  74. this.Controls.SetChildIndex(this.btnOk, 0);
  75. this.Controls.SetChildIndex(this.btnCancel, 0);
  76. this.Controls.SetChildIndex(this.tbMessage, 0);
  77. this.Controls.SetChildIndex(this.lbDescription, 0);
  78. this.ResumeLayout(false);
  79. this.PerformLayout();
  80. }
  81. #endregion
  82. private System.Windows.Forms.TextBox tbMessage;
  83. private System.Windows.Forms.Label lbDescription;
  84. }
  85. }