RelationEditorForm.Designer.cs 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. using System;
  2. namespace FastReport.Forms
  3. {
  4. partial class RelationEditorForm
  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. this.lblParentTable = new System.Windows.Forms.Label();
  30. this.cbxParent = new System.Windows.Forms.ComboBox();
  31. this.lblChildTable = new System.Windows.Forms.Label();
  32. this.cbxChild = new System.Windows.Forms.ComboBox();
  33. this.lblColumns = new System.Windows.Forms.Label();
  34. this.columnsPanel = new FastReport.Forms.ColumnsPanel();
  35. this.SuspendLayout();
  36. //
  37. // btnOk
  38. //
  39. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  40. this.btnOk.Location = new System.Drawing.Point(274, 131);
  41. //
  42. // btnCancel
  43. //
  44. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  45. this.btnCancel.Location = new System.Drawing.Point(355, 131);
  46. //
  47. // lblParentTable
  48. //
  49. this.lblParentTable.AutoSize = true;
  50. this.lblParentTable.Location = new System.Drawing.Point(12, 12);
  51. this.lblParentTable.Name = "lblParentTable";
  52. this.lblParentTable.Size = new System.Drawing.Size(70, 13);
  53. this.lblParentTable.TabIndex = 3;
  54. this.lblParentTable.Text = "Parent table:";
  55. //
  56. // cbxParent
  57. //
  58. this.cbxParent.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
  59. this.cbxParent.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  60. this.cbxParent.FormattingEnabled = true;
  61. this.cbxParent.Location = new System.Drawing.Point(15, 32);
  62. this.cbxParent.Name = "cbxParent";
  63. this.cbxParent.Size = new System.Drawing.Size(175, 21);
  64. this.cbxParent.TabIndex = 4;
  65. this.cbxParent.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.cbxParent_DrawItem);
  66. this.cbxParent.SelectedIndexChanged += new System.EventHandler(this.cbxParent_SelectedIndexChanged);
  67. //
  68. // lblChildTable
  69. //
  70. this.lblChildTable.AutoSize = true;
  71. this.lblChildTable.Location = new System.Drawing.Point(199, 12);
  72. this.lblChildTable.Name = "lblChildTable";
  73. this.lblChildTable.Size = new System.Drawing.Size(61, 13);
  74. this.lblChildTable.TabIndex = 3;
  75. this.lblChildTable.Text = "Child table:";
  76. //
  77. // cbxChild
  78. //
  79. this.cbxChild.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
  80. this.cbxChild.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  81. this.cbxChild.FormattingEnabled = true;
  82. this.cbxChild.Location = new System.Drawing.Point(202, 32);
  83. this.cbxChild.Name = "cbxChild";
  84. this.cbxChild.Size = new System.Drawing.Size(175, 21);
  85. this.cbxChild.TabIndex = 4;
  86. this.cbxChild.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.cbxParent_DrawItem);
  87. this.cbxChild.SelectedIndexChanged += new System.EventHandler(this.cbxChild_SelectedIndexChanged);
  88. //
  89. // lblColumns
  90. //
  91. this.lblColumns.AutoSize = true;
  92. this.lblColumns.Location = new System.Drawing.Point(12, 68);
  93. this.lblColumns.Name = "lblColumns";
  94. this.lblColumns.Size = new System.Drawing.Size(47, 13);
  95. this.lblColumns.TabIndex = 5;
  96. this.lblColumns.Text = "Columns";
  97. //
  98. // columnsPanel
  99. //
  100. this.columnsPanel.AutoScroll = true;
  101. this.columnsPanel.Location = new System.Drawing.Point(12, 85);
  102. this.columnsPanel.Name = "columnsPanel";
  103. this.columnsPanel.Size = new System.Drawing.Size(416, 32);
  104. this.columnsPanel.TabIndex = 6;
  105. this.columnsPanel.Resize += new System.EventHandler(this.columnsPanel_Resize);
  106. //
  107. // RelationEditorForm
  108. //
  109. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  110. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  111. this.ClientSize = new System.Drawing.Size(440, 166);
  112. this.Controls.Add(this.columnsPanel);
  113. this.Controls.Add(this.lblColumns);
  114. this.Controls.Add(this.cbxParent);
  115. this.Controls.Add(this.lblParentTable);
  116. this.Controls.Add(this.cbxChild);
  117. this.Controls.Add(this.lblChildTable);
  118. this.Name = "RelationEditorForm";
  119. this.Text = "Edit Relation";
  120. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.RelationEditorForm_FormClosing);
  121. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.RelationEditorForm_FormClosed);
  122. this.Controls.SetChildIndex(this.lblChildTable, 0);
  123. this.Controls.SetChildIndex(this.cbxChild, 0);
  124. this.Controls.SetChildIndex(this.lblParentTable, 0);
  125. this.Controls.SetChildIndex(this.btnOk, 0);
  126. this.Controls.SetChildIndex(this.btnCancel, 0);
  127. this.Controls.SetChildIndex(this.cbxParent, 0);
  128. this.Controls.SetChildIndex(this.lblColumns, 0);
  129. this.Controls.SetChildIndex(this.columnsPanel, 0);
  130. this.ResumeLayout(false);
  131. this.PerformLayout();
  132. }
  133. #endregion
  134. private System.Windows.Forms.Label lblParentTable;
  135. private System.Windows.Forms.ComboBox cbxParent;
  136. private System.Windows.Forms.Label lblChildTable;
  137. private System.Windows.Forms.ComboBox cbxChild;
  138. private System.Windows.Forms.Label lblColumns;
  139. private ColumnsPanel columnsPanel;
  140. }
  141. }