Form1.Designer.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. namespace ISP41Kholin
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Обязательная переменная конструктора.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Освободить все используемые ресурсы.
  11. /// </summary>
  12. /// <param name="disposing">истинно, если управляемый ресурс должен быть удален; иначе ложно.</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
  22. /// <summary>
  23. /// Требуемый метод для поддержки конструктора — не изменяйте
  24. /// содержимое этого метода с помощью редактора кода.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.button1 = new System.Windows.Forms.Button();
  29. this.button2 = new System.Windows.Forms.Button();
  30. this.button3 = new System.Windows.Forms.Button();
  31. this.SuspendLayout();
  32. //
  33. // button1
  34. //
  35. this.button1.Location = new System.Drawing.Point(63, 59);
  36. this.button1.Name = "button1";
  37. this.button1.Size = new System.Drawing.Size(174, 46);
  38. this.button1.TabIndex = 0;
  39. this.button1.Text = "Товары";
  40. this.button1.UseVisualStyleBackColor = true;
  41. this.button1.Click += new System.EventHandler(this.button1_Click);
  42. //
  43. // button2
  44. //
  45. this.button2.Location = new System.Drawing.Point(63, 134);
  46. this.button2.Name = "button2";
  47. this.button2.Size = new System.Drawing.Size(174, 46);
  48. this.button2.TabIndex = 1;
  49. this.button2.Text = "Управление товарами";
  50. this.button2.UseVisualStyleBackColor = true;
  51. this.button2.Click += new System.EventHandler(this.button2_Click);
  52. //
  53. // button3
  54. //
  55. this.button3.Location = new System.Drawing.Point(63, 207);
  56. this.button3.Name = "button3";
  57. this.button3.Size = new System.Drawing.Size(174, 46);
  58. this.button3.TabIndex = 2;
  59. this.button3.Text = "История покупок";
  60. this.button3.UseVisualStyleBackColor = true;
  61. this.button3.Click += new System.EventHandler(this.button3_Click);
  62. //
  63. // Form1
  64. //
  65. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  66. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  67. this.ClientSize = new System.Drawing.Size(305, 351);
  68. this.Controls.Add(this.button3);
  69. this.Controls.Add(this.button2);
  70. this.Controls.Add(this.button1);
  71. this.Name = "Form1";
  72. this.Text = "Form1";
  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. }