/src/SimpleOrgChart/View/MainForm.Designer.cs
C# | 82 lines | 53 code | 6 blank | 23 comment | 3 complexity | 6cab947f811a9a18faef319fe0f0f640 MD5 | raw file
1namespace SimpleOrgChart.View 2{ 3 partial class MainForm 4 { 5 /// <summary> 6 /// Required designer variable. 7 /// </summary> 8 private System.ComponentModel.IContainer components = null; 9 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 23 #region Windows Form Designer generated code 24 25 /// <summary> 26 /// Required method for Designer support - do not modify 27 /// the contents of this method with the code editor. 28 /// </summary> 29 private void InitializeComponent() 30 { 31 this.OrgChart = new System.Windows.Forms.TreeView(); 32 this.AddNewEmployee = new System.Windows.Forms.Button(); 33 this.ViewEmployeeDetail = new ViewEmployeeDetailControl(); 34 this.SuspendLayout(); 35 // 36 // OrgChart 37 // 38 this.OrgChart.Location = new System.Drawing.Point(12, 12); 39 this.OrgChart.Name = "OrgChart"; 40 this.OrgChart.Size = new System.Drawing.Size(482, 196); 41 this.OrgChart.TabIndex = 0; 42 this.OrgChart.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.OrgChart_AfterSelect); 43 // 44 // AddNewEmployee 45 // 46 this.AddNewEmployee.Location = new System.Drawing.Point(12, 309); 47 this.AddNewEmployee.Name = "AddNewEmployee"; 48 this.AddNewEmployee.Size = new System.Drawing.Size(140, 23); 49 this.AddNewEmployee.TabIndex = 2; 50 this.AddNewEmployee.Text = "Add New Employee"; 51 this.AddNewEmployee.UseVisualStyleBackColor = true; 52 this.AddNewEmployee.Click += new System.EventHandler(this.AddNewEmployee_Click); 53 // 54 // ViewEmployeeDetail 55 // 56 this.ViewEmployeeDetail.Location = new System.Drawing.Point(12, 214); 57 this.ViewEmployeeDetail.Name = "ViewEmployeeDetail"; 58 this.ViewEmployeeDetail.Size = new System.Drawing.Size(482, 89); 59 this.ViewEmployeeDetail.TabIndex = 1; 60 // 61 // MainForm 62 // 63 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 64 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 65 this.ClientSize = new System.Drawing.Size(506, 340); 66 this.Controls.Add(this.AddNewEmployee); 67 this.Controls.Add(this.ViewEmployeeDetail); 68 this.Controls.Add(this.OrgChart); 69 this.Name = "MainForm"; 70 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 71 this.Text = "Simple Org Chart"; 72 this.ResumeLayout(false); 73 74 } 75 76 #endregion 77 78 private System.Windows.Forms.TreeView OrgChart; 79 private ViewEmployeeDetailControl ViewEmployeeDetail; 80 private System.Windows.Forms.Button AddNewEmployee; 81 } 82}