Form2.Designer.cs 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. 
  2. namespace Cafe12
  3. {
  4. partial class AdministrationForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  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. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.button2 = new System.Windows.Forms.Button();
  31. this.button3 = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // button1
  35. //
  36. this.button1.Location = new System.Drawing.Point(210, 175);
  37. this.button1.Name = "button1";
  38. this.button1.Size = new System.Drawing.Size(75, 23);
  39. this.button1.TabIndex = 0;
  40. this.button1.Text = "Сотрудники";
  41. this.button1.UseVisualStyleBackColor = true;
  42. this.button1.Click += new System.EventHandler(this.button1_Click);
  43. //
  44. // button2
  45. //
  46. this.button2.Location = new System.Drawing.Point(210, 237);
  47. this.button2.Name = "button2";
  48. this.button2.Size = new System.Drawing.Size(75, 23);
  49. this.button2.TabIndex = 1;
  50. this.button2.Text = "Заказы";
  51. this.button2.UseVisualStyleBackColor = true;
  52. //
  53. // button3
  54. //
  55. this.button3.Location = new System.Drawing.Point(210, 296);
  56. this.button3.Name = "button3";
  57. this.button3.Size = new System.Drawing.Size(75, 23);
  58. this.button3.TabIndex = 2;
  59. this.button3.Text = "Смены";
  60. this.button3.UseVisualStyleBackColor = true;
  61. //
  62. // AdministrationForm
  63. //
  64. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  65. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  66. this.ClientSize = new System.Drawing.Size(513, 469);
  67. this.Controls.Add(this.button3);
  68. this.Controls.Add(this.button2);
  69. this.Controls.Add(this.button1);
  70. this.Name = "AdministrationForm";
  71. this.Text = "Окно Администратора";
  72. this.Load += new System.EventHandler(this.Form2_Load);
  73. this.ResumeLayout(false);
  74. }
  75. #endregion
  76. private System.Windows.Forms.Button button1;
  77. private System.Windows.Forms.Button button2;
  78. private System.Windows.Forms.Button button3;
  79. }
  80. }