GridControlColumnsEditorForm.Designer.cs 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. namespace FastReport.Forms
  2. {
  3. partial class GridControlColumnsEditorForm
  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.gbColumns = new System.Windows.Forms.GroupBox();
  29. this.btnDown = new System.Windows.Forms.Button();
  30. this.btnUp = new System.Windows.Forms.Button();
  31. this.btnRemove = new System.Windows.Forms.Button();
  32. this.btnAdd = new System.Windows.Forms.Button();
  33. this.lvColumns = new System.Windows.Forms.ListView();
  34. this.gbProperties = new System.Windows.Forms.GroupBox();
  35. this.frPropertyGrid1 = new System.Windows.Forms.PropertyGrid();
  36. this.btnAddAll = new System.Windows.Forms.Button();
  37. this.gbColumns.SuspendLayout();
  38. this.gbProperties.SuspendLayout();
  39. this.SuspendLayout();
  40. //
  41. // btnOk
  42. //
  43. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  44. this.btnOk.Location = new System.Drawing.Point(392, 319);
  45. //
  46. // btnCancel
  47. //
  48. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  49. this.btnCancel.Location = new System.Drawing.Point(472, 319);
  50. //
  51. // gbColumns
  52. //
  53. this.gbColumns.Controls.Add(this.btnAddAll);
  54. this.gbColumns.Controls.Add(this.btnDown);
  55. this.gbColumns.Controls.Add(this.btnUp);
  56. this.gbColumns.Controls.Add(this.btnRemove);
  57. this.gbColumns.Controls.Add(this.btnAdd);
  58. this.gbColumns.Controls.Add(this.lvColumns);
  59. this.gbColumns.Location = new System.Drawing.Point(8, 4);
  60. this.gbColumns.Name = "gbColumns";
  61. this.gbColumns.Size = new System.Drawing.Size(276, 304);
  62. this.gbColumns.TabIndex = 1;
  63. this.gbColumns.TabStop = false;
  64. this.gbColumns.Text = "Columns";
  65. //
  66. // btnDown
  67. //
  68. this.btnDown.Location = new System.Drawing.Point(172, 268);
  69. this.btnDown.Name = "btnDown";
  70. this.btnDown.Size = new System.Drawing.Size(24, 24);
  71. this.btnDown.TabIndex = 4;
  72. this.btnDown.UseVisualStyleBackColor = true;
  73. this.btnDown.Click += new System.EventHandler(this.btnDown_Click);
  74. //
  75. // btnUp
  76. //
  77. this.btnUp.Location = new System.Drawing.Point(172, 240);
  78. this.btnUp.Name = "btnUp";
  79. this.btnUp.Size = new System.Drawing.Size(24, 24);
  80. this.btnUp.TabIndex = 3;
  81. this.btnUp.UseVisualStyleBackColor = true;
  82. this.btnUp.Click += new System.EventHandler(this.btnUp_Click);
  83. //
  84. // btnRemove
  85. //
  86. this.btnRemove.Location = new System.Drawing.Point(172, 48);
  87. this.btnRemove.Name = "btnRemove";
  88. this.btnRemove.Size = new System.Drawing.Size(95, 23);
  89. this.btnRemove.TabIndex = 2;
  90. this.btnRemove.Text = "Remove";
  91. this.btnRemove.UseVisualStyleBackColor = true;
  92. this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
  93. //
  94. // btnAdd
  95. //
  96. this.btnAdd.Location = new System.Drawing.Point(172, 20);
  97. this.btnAdd.Name = "btnAdd";
  98. this.btnAdd.Size = new System.Drawing.Size(95, 23);
  99. this.btnAdd.TabIndex = 1;
  100. this.btnAdd.Text = "Add";
  101. this.btnAdd.UseVisualStyleBackColor = true;
  102. this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
  103. //
  104. // lvColumns
  105. //
  106. this.lvColumns.HideSelection = false;
  107. this.lvColumns.LabelEdit = true;
  108. this.lvColumns.Location = new System.Drawing.Point(12, 20);
  109. this.lvColumns.Name = "lvColumns";
  110. this.lvColumns.Size = new System.Drawing.Size(152, 272);
  111. this.lvColumns.TabIndex = 0;
  112. this.lvColumns.UseCompatibleStateImageBehavior = false;
  113. this.lvColumns.View = System.Windows.Forms.View.List;
  114. this.lvColumns.SelectedIndexChanged += new System.EventHandler(this.lvColumns_SelectedIndexChanged);
  115. this.lvColumns.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.lvColumns_AfterLabelEdit);
  116. //
  117. // gbProperties
  118. //
  119. this.gbProperties.Controls.Add(this.frPropertyGrid1);
  120. this.gbProperties.Location = new System.Drawing.Point(292, 4);
  121. this.gbProperties.Name = "gbProperties";
  122. this.gbProperties.Size = new System.Drawing.Size(256, 304);
  123. this.gbProperties.TabIndex = 2;
  124. this.gbProperties.TabStop = false;
  125. this.gbProperties.Text = "Properties";
  126. //
  127. // frPropertyGrid1
  128. //
  129. this.frPropertyGrid1.CommandsActiveLinkColor = System.Drawing.SystemColors.ActiveCaption;
  130. this.frPropertyGrid1.CommandsDisabledLinkColor = System.Drawing.SystemColors.ControlDark;
  131. this.frPropertyGrid1.CommandsLinkColor = System.Drawing.SystemColors.ActiveCaption;
  132. this.frPropertyGrid1.LineColor = System.Drawing.SystemColors.Control;
  133. this.frPropertyGrid1.Location = new System.Drawing.Point(12, 20);
  134. this.frPropertyGrid1.Name = "frPropertyGrid1";
  135. this.frPropertyGrid1.PropertySort = System.Windows.Forms.PropertySort.Alphabetical;
  136. this.frPropertyGrid1.Size = new System.Drawing.Size(232, 272);
  137. this.frPropertyGrid1.TabIndex = 0;
  138. this.frPropertyGrid1.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.frPropertyGrid1_PropertyValueChanged);
  139. //
  140. // btnAddAll
  141. //
  142. this.btnAddAll.Location = new System.Drawing.Point(172, 76);
  143. this.btnAddAll.Name = "btnAddAll";
  144. this.btnAddAll.Size = new System.Drawing.Size(95, 23);
  145. this.btnAddAll.TabIndex = 5;
  146. this.btnAddAll.Text = "Add all";
  147. this.btnAddAll.UseVisualStyleBackColor = true;
  148. this.btnAddAll.Click += new System.EventHandler(this.btnAddAll_Click);
  149. //
  150. // GridControlColumnsEditorForm
  151. //
  152. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  153. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  154. this.ClientSize = new System.Drawing.Size(556, 353);
  155. this.Controls.Add(this.gbProperties);
  156. this.Controls.Add(this.gbColumns);
  157. //this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
  158. this.Name = "GridControlColumnsEditorForm";
  159. this.Text = "Edit Columns";
  160. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.GridControlColumnsEditorForm_FormClosed);
  161. this.Controls.SetChildIndex(this.btnCancel, 0);
  162. this.Controls.SetChildIndex(this.btnOk, 0);
  163. this.Controls.SetChildIndex(this.gbColumns, 0);
  164. this.Controls.SetChildIndex(this.gbProperties, 0);
  165. this.gbColumns.ResumeLayout(false);
  166. this.gbProperties.ResumeLayout(false);
  167. this.ResumeLayout(false);
  168. }
  169. #endregion
  170. private System.Windows.Forms.GroupBox gbColumns;
  171. private System.Windows.Forms.Button btnDown;
  172. private System.Windows.Forms.Button btnUp;
  173. private System.Windows.Forms.Button btnRemove;
  174. private System.Windows.Forms.Button btnAdd;
  175. private System.Windows.Forms.ListView lvColumns;
  176. private System.Windows.Forms.GroupBox gbProperties;
  177. private System.Windows.Forms.PropertyGrid frPropertyGrid1;
  178. private System.Windows.Forms.Button btnAddAll;
  179. }
  180. }