MainView.Designer.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. namespace Aitex.Core.Backend
  2. {
  3. partial class MainView
  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.splitContainer1 = new System.Windows.Forms.SplitContainer();
  29. this.btnHide = new System.Windows.Forms.Button();
  30. this.splitContainer2 = new System.Windows.Forms.SplitContainer();
  31. this.treeView1 = new System.Windows.Forms.TreeView();
  32. this.btnReset = new System.Windows.Forms.Button();
  33. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  34. this.splitContainer1.Panel1.SuspendLayout();
  35. this.splitContainer1.Panel2.SuspendLayout();
  36. this.splitContainer1.SuspendLayout();
  37. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
  38. this.splitContainer2.Panel1.SuspendLayout();
  39. this.splitContainer2.SuspendLayout();
  40. this.SuspendLayout();
  41. //
  42. // splitContainer1
  43. //
  44. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  45. this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
  46. this.splitContainer1.IsSplitterFixed = true;
  47. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  48. this.splitContainer1.Name = "splitContainer1";
  49. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  50. //
  51. // splitContainer1.Panel1
  52. //
  53. this.splitContainer1.Panel1.Controls.Add(this.btnReset);
  54. this.splitContainer1.Panel1.Controls.Add(this.btnHide);
  55. //
  56. // splitContainer1.Panel2
  57. //
  58. this.splitContainer1.Panel2.BackColor = System.Drawing.Color.White;
  59. this.splitContainer1.Panel2.Controls.Add(this.splitContainer2);
  60. this.splitContainer1.Size = new System.Drawing.Size(1107, 784);
  61. this.splitContainer1.SplitterDistance = 30;
  62. this.splitContainer1.TabIndex = 0;
  63. //
  64. // btnHide
  65. //
  66. this.btnHide.Location = new System.Drawing.Point(984, 5);
  67. this.btnHide.Name = "btnHide";
  68. this.btnHide.Size = new System.Drawing.Size(111, 23);
  69. this.btnHide.TabIndex = 3;
  70. this.btnHide.Text = "Hide";
  71. this.btnHide.UseVisualStyleBackColor = true;
  72. this.btnHide.Click += new System.EventHandler(this.btnLogout_Click);
  73. //
  74. // splitContainer2
  75. //
  76. this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
  77. this.splitContainer2.Location = new System.Drawing.Point(0, 0);
  78. this.splitContainer2.Name = "splitContainer2";
  79. //
  80. // splitContainer2.Panel1
  81. //
  82. this.splitContainer2.Panel1.Controls.Add(this.treeView1);
  83. this.splitContainer2.Size = new System.Drawing.Size(1107, 750);
  84. this.splitContainer2.SplitterDistance = 150;
  85. this.splitContainer2.SplitterWidth = 6;
  86. this.splitContainer2.TabIndex = 0;
  87. //
  88. // treeView1
  89. //
  90. this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
  91. this.treeView1.Location = new System.Drawing.Point(0, 0);
  92. this.treeView1.Name = "treeView1";
  93. this.treeView1.Size = new System.Drawing.Size(150, 750);
  94. this.treeView1.TabIndex = 0;
  95. this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
  96. //
  97. // btnReset
  98. //
  99. this.btnReset.Location = new System.Drawing.Point(12, 3);
  100. this.btnReset.Name = "btnReset";
  101. this.btnReset.Size = new System.Drawing.Size(111, 23);
  102. this.btnReset.TabIndex = 4;
  103. this.btnReset.Text = "Reset";
  104. this.btnReset.UseVisualStyleBackColor = true;
  105. this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
  106. //
  107. // MainView
  108. //
  109. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  110. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  111. this.ClientSize = new System.Drawing.Size(1107, 784);
  112. this.Controls.Add(this.splitContainer1);
  113. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  114. this.Name = "MainView";
  115. this.Text = "Backend Management Console";
  116. this.splitContainer1.Panel1.ResumeLayout(false);
  117. this.splitContainer1.Panel2.ResumeLayout(false);
  118. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  119. this.splitContainer1.ResumeLayout(false);
  120. this.splitContainer2.Panel1.ResumeLayout(false);
  121. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
  122. this.splitContainer2.ResumeLayout(false);
  123. this.ResumeLayout(false);
  124. }
  125. #endregion
  126. private System.Windows.Forms.SplitContainer splitContainer1;
  127. private System.Windows.Forms.Button btnHide;
  128. private System.Windows.Forms.SplitContainer splitContainer2;
  129. private System.Windows.Forms.TreeView treeView1;
  130. private System.Windows.Forms.Button btnReset;
  131. }
  132. }