JsonEditorForm.Designer.cs 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. using FastReport.Controls;
  2. namespace FastReport.Forms
  3. {
  4. partial class JsonEditorForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(JsonEditorForm));
  30. this.tbJson = new System.Windows.Forms.TextBox();
  31. this.cbWordWrap = new System.Windows.Forms.CheckBox();
  32. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  33. this.btnOpen = new System.Windows.Forms.ToolStripButton();
  34. this.btnSave = new System.Windows.Forms.ToolStripButton();
  35. this.cbEnconding = new System.Windows.Forms.ToolStripComboBox();
  36. this.btnFormat = new System.Windows.Forms.ToolStripButton();
  37. this.toolStrip1.SuspendLayout();
  38. this.SuspendLayout();
  39. //
  40. // btnOk
  41. //
  42. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  43. this.btnOk.Location = new System.Drawing.Point(138, 246);
  44. //
  45. // btnCancel
  46. //
  47. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  48. this.btnCancel.Location = new System.Drawing.Point(219, 246);
  49. //
  50. // tbJson
  51. //
  52. this.tbJson.AcceptsReturn = true;
  53. this.tbJson.AcceptsTab = true;
  54. this.tbJson.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  55. | System.Windows.Forms.AnchorStyles.Left)
  56. | System.Windows.Forms.AnchorStyles.Right)));
  57. this.tbJson.Location = new System.Drawing.Point(12, 28);
  58. this.tbJson.MaxLength = 2147483647;
  59. this.tbJson.Multiline = true;
  60. this.tbJson.Name = "tbJson";
  61. this.tbJson.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  62. this.tbJson.Size = new System.Drawing.Size(282, 190);
  63. this.tbJson.TabIndex = 1;
  64. this.tbJson.WordWrap = false;
  65. this.tbJson.TextChanged += new System.EventHandler(this.TbJson_TextChanged);
  66. //
  67. // cbWordWrap
  68. //
  69. this.cbWordWrap.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  70. this.cbWordWrap.Location = new System.Drawing.Point(12, 224);
  71. this.cbWordWrap.Name = "cbWordWrap";
  72. this.cbWordWrap.AutoSize = true;
  73. this.cbWordWrap.TabIndex = 2;
  74. this.cbWordWrap.Text = "Word wrap";
  75. this.cbWordWrap.UseVisualStyleBackColor = true;
  76. this.cbWordWrap.CheckedChanged += new System.EventHandler(this.CbWordWrap_CheckedChanged);
  77. //
  78. // toolStrip1
  79. //
  80. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  81. this.btnOpen,
  82. this.btnSave,
  83. this.cbEnconding,
  84. this.btnFormat});
  85. this.toolStrip1.Location = new System.Drawing.Point(0, 0);
  86. this.toolStrip1.Name = "toolStrip1";
  87. this.toolStrip1.Size = new System.Drawing.Size(306, 25);
  88. this.toolStrip1.TabIndex = 3;
  89. this.toolStrip1.Text = "toolStrip1";
  90. //
  91. // btnOpen
  92. //
  93. this.btnOpen.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  94. this.btnOpen.ImageTransparentColor = System.Drawing.Color.Magenta;
  95. this.btnOpen.Name = "btnOpen";
  96. this.btnOpen.Size = new System.Drawing.Size(23, 22);
  97. this.btnOpen.Text = "toolStripButton1";
  98. this.btnOpen.Click += new System.EventHandler(this.BtnOpen_Click);
  99. //
  100. // btnSave
  101. //
  102. this.btnSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  103. this.btnSave.ImageTransparentColor = System.Drawing.Color.Magenta;
  104. this.btnSave.Name = "btnSave";
  105. this.btnSave.Size = new System.Drawing.Size(23, 22);
  106. this.btnSave.Text = "toolStripButton2";
  107. this.btnSave.Click += new System.EventHandler(this.BtnSave_Click);
  108. //
  109. // cbEnconding
  110. //
  111. this.cbEnconding.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  112. this.cbEnconding.Name = "cbEnconding";
  113. this.cbEnconding.Size = new System.Drawing.Size(121, 25);
  114. this.cbEnconding.SelectedIndexChanged += new System.EventHandler(this.CbEnconding_SelectedIndexChanged);
  115. //
  116. // btnFormat
  117. //
  118. this.btnFormat.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  119. this.btnFormat.ImageTransparentColor = System.Drawing.Color.Magenta;
  120. this.btnFormat.Name = "btnFormat";
  121. this.btnFormat.Size = new System.Drawing.Size(23, 22);
  122. this.btnFormat.Text = "toolStripButton3";
  123. this.btnFormat.Click += new System.EventHandler(this.BtnFormat_Click);
  124. //
  125. // JsonEditorForm
  126. //
  127. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  128. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  129. this.ClientSize = new System.Drawing.Size(306, 281);
  130. this.Controls.Add(this.toolStrip1);
  131. this.Controls.Add(this.cbWordWrap);
  132. this.Controls.Add(this.tbJson);
  133. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
  134. this.Name = "JsonEditorForm";
  135. this.ShowIcon = false;
  136. this.Text = "TextOnlyEditorForm";
  137. this.Shown += JsonEditorForm_Shown;
  138. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.JsonEditorForm_FormClosing);
  139. this.Controls.SetChildIndex(this.btnOk, 0);
  140. this.Controls.SetChildIndex(this.btnCancel, 0);
  141. this.Controls.SetChildIndex(this.tbJson, 0);
  142. this.Controls.SetChildIndex(this.cbWordWrap, 0);
  143. this.Controls.SetChildIndex(this.toolStrip1, 0);
  144. this.toolStrip1.ResumeLayout(false);
  145. this.toolStrip1.PerformLayout();
  146. this.ResumeLayout(false);
  147. this.PerformLayout();
  148. }
  149. #endregion
  150. private System.Windows.Forms.TextBox tbJson;
  151. private System.Windows.Forms.ToolStrip toolStrip1;
  152. private System.Windows.Forms.ToolStripButton btnOpen;
  153. private System.Windows.Forms.ToolStripButton btnSave;
  154. private System.Windows.Forms.ToolStripButton btnFormat;
  155. private System.Windows.Forms.ToolStripComboBox cbEnconding;
  156. private System.Windows.Forms.CheckBox cbWordWrap;
  157. }
  158. }