StringCollectionEditorForm.Designer.cs 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. namespace FastReport.Forms
  2. {
  3. partial class StringCollectionEditorForm
  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.tbLines = new System.Windows.Forms.TextBox();
  29. this.SuspendLayout();
  30. //
  31. // btnOk
  32. //
  33. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  34. this.btnOk.Location = new System.Drawing.Point(251, 252);
  35. //
  36. // btnCancel
  37. //
  38. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  39. this.btnCancel.Location = new System.Drawing.Point(331, 252);
  40. //
  41. // tbLines
  42. //
  43. this.tbLines.AcceptsReturn = true;
  44. this.tbLines.AcceptsTab = true;
  45. this.tbLines.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  46. | System.Windows.Forms.AnchorStyles.Left)
  47. | System.Windows.Forms.AnchorStyles.Right)));
  48. this.tbLines.Location = new System.Drawing.Point(8, 8);
  49. this.tbLines.Multiline = true;
  50. this.tbLines.Name = "tbLines";
  51. this.tbLines.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  52. this.tbLines.Size = new System.Drawing.Size(399, 232);
  53. this.tbLines.TabIndex = 0;
  54. //
  55. // StringCollectionEditorForm
  56. //
  57. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  58. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  59. this.ClientSize = new System.Drawing.Size(415, 286);
  60. this.Controls.Add(this.tbLines);
  61. this.Name = "StringCollectionEditorForm";
  62. this.Shown += new System.EventHandler(this.StringCollectionEditorForm_Shown);
  63. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.StringCollectionEditorForm_FormClosed);
  64. this.Controls.SetChildIndex(this.btnCancel, 0);
  65. this.Controls.SetChildIndex(this.btnOk, 0);
  66. this.Controls.SetChildIndex(this.tbLines, 0);
  67. this.ResumeLayout(false);
  68. this.PerformLayout();
  69. }
  70. #endregion
  71. public System.Windows.Forms.TextBox tbLines;
  72. }
  73. }