110 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			110 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace DataLoader
 | 
						|
{
 | 
						|
    partial class GroupProp
 | 
						|
    {
 | 
						|
        /// <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.splitContainer1 = new System.Windows.Forms.SplitContainer();
 | 
						|
            this.lbGroups = new System.Windows.Forms.ListBox();
 | 
						|
            this.pg = new System.Windows.Forms.PropertyGrid();
 | 
						|
            this.btnSave = new System.Windows.Forms.Button();
 | 
						|
            this.splitContainer1.Panel1.SuspendLayout();
 | 
						|
            this.splitContainer1.Panel2.SuspendLayout();
 | 
						|
            this.splitContainer1.SuspendLayout();
 | 
						|
            this.SuspendLayout();
 | 
						|
            // 
 | 
						|
            // splitContainer1
 | 
						|
            // 
 | 
						|
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
 | 
						|
            this.splitContainer1.Location = new System.Drawing.Point(0, 0);
 | 
						|
            this.splitContainer1.Name = "splitContainer1";
 | 
						|
            // 
 | 
						|
            // splitContainer1.Panel1
 | 
						|
            // 
 | 
						|
            this.splitContainer1.Panel1.Controls.Add(this.lbGroups);
 | 
						|
            // 
 | 
						|
            // splitContainer1.Panel2
 | 
						|
            // 
 | 
						|
            this.splitContainer1.Panel2.Controls.Add(this.pg);
 | 
						|
            this.splitContainer1.Panel2.Controls.Add(this.btnSave);
 | 
						|
            this.splitContainer1.Size = new System.Drawing.Size(629, 290);
 | 
						|
            this.splitContainer1.SplitterDistance = 209;
 | 
						|
            this.splitContainer1.TabIndex = 0;
 | 
						|
            // 
 | 
						|
            // lbGroups
 | 
						|
            // 
 | 
						|
            this.lbGroups.Dock = System.Windows.Forms.DockStyle.Fill;
 | 
						|
            this.lbGroups.FormattingEnabled = true;
 | 
						|
            this.lbGroups.Location = new System.Drawing.Point(0, 0);
 | 
						|
            this.lbGroups.Name = "lbGroups";
 | 
						|
            this.lbGroups.Size = new System.Drawing.Size(209, 290);
 | 
						|
            this.lbGroups.TabIndex = 0;
 | 
						|
            this.lbGroups.Click += new System.EventHandler(this.lbGroups_Click);
 | 
						|
            // 
 | 
						|
            // pg
 | 
						|
            // 
 | 
						|
            this.pg.Dock = System.Windows.Forms.DockStyle.Fill;
 | 
						|
            this.pg.Location = new System.Drawing.Point(0, 23);
 | 
						|
            this.pg.Name = "pg";
 | 
						|
            this.pg.Size = new System.Drawing.Size(416, 267);
 | 
						|
            this.pg.TabIndex = 0;
 | 
						|
            // 
 | 
						|
            // btnSave
 | 
						|
            // 
 | 
						|
            this.btnSave.Dock = System.Windows.Forms.DockStyle.Top;
 | 
						|
            this.btnSave.Location = new System.Drawing.Point(0, 0);
 | 
						|
            this.btnSave.Name = "btnSave";
 | 
						|
            this.btnSave.Size = new System.Drawing.Size(416, 23);
 | 
						|
            this.btnSave.TabIndex = 1;
 | 
						|
            this.btnSave.Text = "Save";
 | 
						|
            this.btnSave.UseVisualStyleBackColor = true;
 | 
						|
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
 | 
						|
            // 
 | 
						|
            // GroupProp
 | 
						|
            // 
 | 
						|
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
 | 
						|
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | 
						|
            this.ClientSize = new System.Drawing.Size(629, 290);
 | 
						|
            this.Controls.Add(this.splitContainer1);
 | 
						|
            this.Name = "GroupProp";
 | 
						|
            this.Text = "GroupProp";
 | 
						|
            this.Load += new System.EventHandler(this.GroupProp_Load);
 | 
						|
            this.splitContainer1.Panel1.ResumeLayout(false);
 | 
						|
            this.splitContainer1.Panel2.ResumeLayout(false);
 | 
						|
            this.splitContainer1.ResumeLayout(false);
 | 
						|
            this.ResumeLayout(false);
 | 
						|
 | 
						|
        }
 | 
						|
 | 
						|
        #endregion
 | 
						|
 | 
						|
        private System.Windows.Forms.SplitContainer splitContainer1;
 | 
						|
        private System.Windows.Forms.ListBox lbGroups;
 | 
						|
        private System.Windows.Forms.PropertyGrid pg;
 | 
						|
        private System.Windows.Forms.Button btnSave;
 | 
						|
    }
 | 
						|
} |