/src/SimpleOrgChart/View/MainForm.Designer.cs

http://github.com/derickbailey/appcontroller · C# · 82 lines · 53 code · 6 blank · 23 comment · 3 complexity · 6cab947f811a9a18faef319fe0f0f640 MD5 · raw file

  1. namespace SimpleOrgChart.View
  2. {
  3. partial class MainForm
  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.OrgChart = new System.Windows.Forms.TreeView();
  29. this.AddNewEmployee = new System.Windows.Forms.Button();
  30. this.ViewEmployeeDetail = new ViewEmployeeDetailControl();
  31. this.SuspendLayout();
  32. //
  33. // OrgChart
  34. //
  35. this.OrgChart.Location = new System.Drawing.Point(12, 12);
  36. this.OrgChart.Name = "OrgChart";
  37. this.OrgChart.Size = new System.Drawing.Size(482, 196);
  38. this.OrgChart.TabIndex = 0;
  39. this.OrgChart.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.OrgChart_AfterSelect);
  40. //
  41. // AddNewEmployee
  42. //
  43. this.AddNewEmployee.Location = new System.Drawing.Point(12, 309);
  44. this.AddNewEmployee.Name = "AddNewEmployee";
  45. this.AddNewEmployee.Size = new System.Drawing.Size(140, 23);
  46. this.AddNewEmployee.TabIndex = 2;
  47. this.AddNewEmployee.Text = "Add New Employee";
  48. this.AddNewEmployee.UseVisualStyleBackColor = true;
  49. this.AddNewEmployee.Click += new System.EventHandler(this.AddNewEmployee_Click);
  50. //
  51. // ViewEmployeeDetail
  52. //
  53. this.ViewEmployeeDetail.Location = new System.Drawing.Point(12, 214);
  54. this.ViewEmployeeDetail.Name = "ViewEmployeeDetail";
  55. this.ViewEmployeeDetail.Size = new System.Drawing.Size(482, 89);
  56. this.ViewEmployeeDetail.TabIndex = 1;
  57. //
  58. // MainForm
  59. //
  60. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  61. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  62. this.ClientSize = new System.Drawing.Size(506, 340);
  63. this.Controls.Add(this.AddNewEmployee);
  64. this.Controls.Add(this.ViewEmployeeDetail);
  65. this.Controls.Add(this.OrgChart);
  66. this.Name = "MainForm";
  67. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  68. this.Text = "Simple Org Chart";
  69. this.ResumeLayout(false);
  70. }
  71. #endregion
  72. private System.Windows.Forms.TreeView OrgChart;
  73. private ViewEmployeeDetailControl ViewEmployeeDetail;
  74. private System.Windows.Forms.Button AddNewEmployee;
  75. }
  76. }