FormMain.Designer.cs 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. namespace KadroviYshot
  2. {
  3. partial class FormMain
  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.btnEmployees = new System.Windows.Forms.Button();
  29. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  30. this.настройкиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  31. this.данныеОрганизацииToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  32. this.должностиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  33. this.специальностиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  34. this.выходToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  35. this.menuStrip1.SuspendLayout();
  36. this.SuspendLayout();
  37. //
  38. // btnEmployees
  39. //
  40. this.btnEmployees.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  41. this.btnEmployees.Location = new System.Drawing.Point(376, 139);
  42. this.btnEmployees.Name = "btnEmployees";
  43. this.btnEmployees.Size = new System.Drawing.Size(191, 54);
  44. this.btnEmployees.TabIndex = 0;
  45. this.btnEmployees.Text = "Сотрудники";
  46. this.btnEmployees.UseVisualStyleBackColor = true;
  47. this.btnEmployees.Click += new System.EventHandler(this.btnEmployees_Click);
  48. //
  49. // menuStrip1
  50. //
  51. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  52. this.настройкиToolStripMenuItem,
  53. this.выходToolStripMenuItem});
  54. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  55. this.menuStrip1.Name = "menuStrip1";
  56. this.menuStrip1.Padding = new System.Windows.Forms.Padding(13, 4, 0, 4);
  57. this.menuStrip1.Size = new System.Drawing.Size(984, 27);
  58. this.menuStrip1.TabIndex = 1;
  59. this.menuStrip1.Text = "menuStrip1";
  60. //
  61. // настройкиToolStripMenuItem
  62. //
  63. this.настройкиToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  64. this.данныеОрганизацииToolStripMenuItem,
  65. this.должностиToolStripMenuItem,
  66. this.специальностиToolStripMenuItem});
  67. this.настройкиToolStripMenuItem.Name = "настройкиToolStripMenuItem";
  68. this.настройкиToolStripMenuItem.Size = new System.Drawing.Size(79, 19);
  69. this.настройкиToolStripMenuItem.Text = "Настройки";
  70. //
  71. // данныеОрганизацииToolStripMenuItem
  72. //
  73. this.данныеОрганизацииToolStripMenuItem.Name = "данныеОрганизацииToolStripMenuItem";
  74. this.данныеОрганизацииToolStripMenuItem.Size = new System.Drawing.Size(191, 22);
  75. this.данныеОрганизацииToolStripMenuItem.Text = "Данные организации";
  76. //
  77. // должностиToolStripMenuItem
  78. //
  79. this.должностиToolStripMenuItem.Name = "должностиToolStripMenuItem";
  80. this.должностиToolStripMenuItem.Size = new System.Drawing.Size(191, 22);
  81. this.должностиToolStripMenuItem.Text = "Должности";
  82. //
  83. // специальностиToolStripMenuItem
  84. //
  85. this.специальностиToolStripMenuItem.Name = "специальностиToolStripMenuItem";
  86. this.специальностиToolStripMenuItem.Size = new System.Drawing.Size(191, 22);
  87. this.специальностиToolStripMenuItem.Text = "Специальности";
  88. //
  89. // выходToolStripMenuItem
  90. //
  91. this.выходToolStripMenuItem.Name = "выходToolStripMenuItem";
  92. this.выходToolStripMenuItem.Size = new System.Drawing.Size(54, 19);
  93. this.выходToolStripMenuItem.Text = "Выход";
  94. this.выходToolStripMenuItem.Click += new System.EventHandler(this.выходToolStripMenuItem_Click);
  95. //
  96. // FormMain
  97. //
  98. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  99. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  100. this.ClientSize = new System.Drawing.Size(984, 961);
  101. this.Controls.Add(this.menuStrip1);
  102. this.Controls.Add(this.btnEmployees);
  103. this.Name = "FormMain";
  104. this.Text = "Главная форма";
  105. this.menuStrip1.ResumeLayout(false);
  106. this.menuStrip1.PerformLayout();
  107. this.ResumeLayout(false);
  108. this.PerformLayout();
  109. }
  110. #endregion
  111. private System.Windows.Forms.Button btnEmployees;
  112. private System.Windows.Forms.MenuStrip menuStrip1;
  113. private System.Windows.Forms.ToolStripMenuItem настройкиToolStripMenuItem;
  114. private System.Windows.Forms.ToolStripMenuItem данныеОрганизацииToolStripMenuItem;
  115. private System.Windows.Forms.ToolStripMenuItem должностиToolStripMenuItem;
  116. private System.Windows.Forms.ToolStripMenuItem специальностиToolStripMenuItem;
  117. private System.Windows.Forms.ToolStripMenuItem выходToolStripMenuItem;
  118. }
  119. }