123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- namespace Aitex.Core.Backend
- {
- partial class MainView
- {
- /// <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.btnHide = new System.Windows.Forms.Button();
- this.splitContainer2 = new System.Windows.Forms.SplitContainer();
- this.treeView1 = new System.Windows.Forms.TreeView();
- this.btnReset = new System.Windows.Forms.Button();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
- this.splitContainer2.Panel1.SuspendLayout();
- this.splitContainer2.SuspendLayout();
- this.SuspendLayout();
- //
- // splitContainer1
- //
- this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
- this.splitContainer1.IsSplitterFixed = true;
- this.splitContainer1.Location = new System.Drawing.Point(0, 0);
- this.splitContainer1.Name = "splitContainer1";
- this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.btnReset);
- this.splitContainer1.Panel1.Controls.Add(this.btnHide);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.BackColor = System.Drawing.Color.White;
- this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
- this.splitContainer1.Size = new System.Drawing.Size(1107, 784);
- this.splitContainer1.SplitterDistance = 30;
- this.splitContainer1.TabIndex = 0;
- //
- // btnHide
- //
- this.btnHide.Location = new System.Drawing.Point(984, 5);
- this.btnHide.Name = "btnHide";
- this.btnHide.Size = new System.Drawing.Size(111, 23);
- this.btnHide.TabIndex = 3;
- this.btnHide.Text = "Hide";
- this.btnHide.UseVisualStyleBackColor = true;
- this.btnHide.Click += new System.EventHandler(this.btnLogout_Click);
- //
- // splitContainer2
- //
- this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer2.Location = new System.Drawing.Point(0, 0);
- this.splitContainer2.Name = "splitContainer2";
- //
- // splitContainer2.Panel1
- //
- this.splitContainer2.Panel1.Controls.Add(this.treeView1);
- this.splitContainer2.Size = new System.Drawing.Size(1107, 750);
- this.splitContainer2.SplitterDistance = 150;
- this.splitContainer2.SplitterWidth = 6;
- this.splitContainer2.TabIndex = 0;
- //
- // treeView1
- //
- this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.treeView1.Location = new System.Drawing.Point(0, 0);
- this.treeView1.Name = "treeView1";
- this.treeView1.Size = new System.Drawing.Size(150, 750);
- this.treeView1.TabIndex = 0;
- this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
- //
- // btnReset
- //
- this.btnReset.Location = new System.Drawing.Point(12, 3);
- this.btnReset.Name = "btnReset";
- this.btnReset.Size = new System.Drawing.Size(111, 23);
- this.btnReset.TabIndex = 4;
- this.btnReset.Text = "Reset";
- this.btnReset.UseVisualStyleBackColor = true;
- this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
- //
- // MainView
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1107, 784);
- this.Controls.Add(this.splitContainer1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Name = "MainView";
- this.Text = "Backend Management Console";
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- this.splitContainer2.Panel1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
- this.splitContainer2.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.SplitContainer splitContainer1;
- private System.Windows.Forms.Button btnHide;
- private System.Windows.Forms.SplitContainer splitContainer2;
- private System.Windows.Forms.TreeView treeView1;
- private System.Windows.Forms.Button btnReset;
- }
- }
|