123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- using System;
- namespace FastReport.Forms
- {
- partial class RelationEditorForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.lblParentTable = new System.Windows.Forms.Label();
- this.cbxParent = new System.Windows.Forms.ComboBox();
- this.lblChildTable = new System.Windows.Forms.Label();
- this.cbxChild = new System.Windows.Forms.ComboBox();
- this.lblColumns = new System.Windows.Forms.Label();
- this.columnsPanel = new FastReport.Forms.ColumnsPanel();
- this.SuspendLayout();
- //
- // btnOk
- //
- this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.btnOk.Location = new System.Drawing.Point(274, 131);
- //
- // btnCancel
- //
- this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
- this.btnCancel.Location = new System.Drawing.Point(355, 131);
- //
- // lblParentTable
- //
- this.lblParentTable.AutoSize = true;
- this.lblParentTable.Location = new System.Drawing.Point(12, 12);
- this.lblParentTable.Name = "lblParentTable";
- this.lblParentTable.Size = new System.Drawing.Size(70, 13);
- this.lblParentTable.TabIndex = 3;
- this.lblParentTable.Text = "Parent table:";
- //
- // cbxParent
- //
- this.cbxParent.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
- this.cbxParent.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbxParent.FormattingEnabled = true;
- this.cbxParent.Location = new System.Drawing.Point(15, 32);
- this.cbxParent.Name = "cbxParent";
- this.cbxParent.Size = new System.Drawing.Size(175, 21);
- this.cbxParent.TabIndex = 4;
- this.cbxParent.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.cbxParent_DrawItem);
- this.cbxParent.SelectedIndexChanged += new System.EventHandler(this.cbxParent_SelectedIndexChanged);
- //
- // lblChildTable
- //
- this.lblChildTable.AutoSize = true;
- this.lblChildTable.Location = new System.Drawing.Point(199, 12);
- this.lblChildTable.Name = "lblChildTable";
- this.lblChildTable.Size = new System.Drawing.Size(61, 13);
- this.lblChildTable.TabIndex = 3;
- this.lblChildTable.Text = "Child table:";
- //
- // cbxChild
- //
- this.cbxChild.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
- this.cbxChild.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbxChild.FormattingEnabled = true;
- this.cbxChild.Location = new System.Drawing.Point(202, 32);
- this.cbxChild.Name = "cbxChild";
- this.cbxChild.Size = new System.Drawing.Size(175, 21);
- this.cbxChild.TabIndex = 4;
- this.cbxChild.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.cbxParent_DrawItem);
- this.cbxChild.SelectedIndexChanged += new System.EventHandler(this.cbxChild_SelectedIndexChanged);
- //
- // lblColumns
- //
- this.lblColumns.AutoSize = true;
- this.lblColumns.Location = new System.Drawing.Point(12, 68);
- this.lblColumns.Name = "lblColumns";
- this.lblColumns.Size = new System.Drawing.Size(47, 13);
- this.lblColumns.TabIndex = 5;
- this.lblColumns.Text = "Columns";
- //
- // columnsPanel
- //
- this.columnsPanel.AutoScroll = true;
- this.columnsPanel.Location = new System.Drawing.Point(12, 85);
- this.columnsPanel.Name = "columnsPanel";
- this.columnsPanel.Size = new System.Drawing.Size(416, 32);
- this.columnsPanel.TabIndex = 6;
- this.columnsPanel.Resize += new System.EventHandler(this.columnsPanel_Resize);
- //
- // RelationEditorForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.ClientSize = new System.Drawing.Size(440, 166);
- this.Controls.Add(this.columnsPanel);
- this.Controls.Add(this.lblColumns);
- this.Controls.Add(this.cbxParent);
- this.Controls.Add(this.lblParentTable);
- this.Controls.Add(this.cbxChild);
- this.Controls.Add(this.lblChildTable);
- this.Name = "RelationEditorForm";
- this.Text = "Edit Relation";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.RelationEditorForm_FormClosing);
- this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.RelationEditorForm_FormClosed);
- this.Controls.SetChildIndex(this.lblChildTable, 0);
- this.Controls.SetChildIndex(this.cbxChild, 0);
- this.Controls.SetChildIndex(this.lblParentTable, 0);
- this.Controls.SetChildIndex(this.btnOk, 0);
- this.Controls.SetChildIndex(this.btnCancel, 0);
- this.Controls.SetChildIndex(this.cbxParent, 0);
- this.Controls.SetChildIndex(this.lblColumns, 0);
- this.Controls.SetChildIndex(this.columnsPanel, 0);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label lblParentTable;
- private System.Windows.Forms.ComboBox cbxParent;
- private System.Windows.Forms.Label lblChildTable;
- private System.Windows.Forms.ComboBox cbxChild;
- private System.Windows.Forms.Label lblColumns;
- private ColumnsPanel columnsPanel;
- }
- }
|