Form1.Designer.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. namespace Lyakhov_Bilet10
  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.label1 = new System.Windows.Forms.Label();
  29. this.button1 = new System.Windows.Forms.Button();
  30. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  31. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  32. this.button2 = new System.Windows.Forms.Button();
  33. this.button3 = new System.Windows.Forms.Button();
  34. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  35. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  36. this.SuspendLayout();
  37. //
  38. // label1
  39. //
  40. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  41. this.label1.ForeColor = System.Drawing.SystemColors.InactiveCaptionText;
  42. this.label1.Location = new System.Drawing.Point(40, 19);
  43. this.label1.Name = "label1";
  44. this.label1.Size = new System.Drawing.Size(283, 34);
  45. this.label1.TabIndex = 0;
  46. this.label1.Text = "База данных \"Учет товаров\"";
  47. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  48. //
  49. // button1
  50. //
  51. this.button1.BackColor = System.Drawing.SystemColors.Menu;
  52. this.button1.Location = new System.Drawing.Point(108, 129);
  53. this.button1.Name = "button1";
  54. this.button1.Size = new System.Drawing.Size(132, 49);
  55. this.button1.TabIndex = 1;
  56. this.button1.Text = "Просмотр списка товаров";
  57. this.button1.UseVisualStyleBackColor = false;
  58. this.button1.Click += new System.EventHandler(this.button1_Click);
  59. //
  60. // pictureBox1
  61. //
  62. this.pictureBox1.BackColor = System.Drawing.SystemColors.ScrollBar;
  63. this.pictureBox1.Location = new System.Drawing.Point(-2, -5);
  64. this.pictureBox1.Name = "pictureBox1";
  65. this.pictureBox1.Size = new System.Drawing.Size(395, 21);
  66. this.pictureBox1.TabIndex = 2;
  67. this.pictureBox1.TabStop = false;
  68. //
  69. // pictureBox2
  70. //
  71. this.pictureBox2.BackColor = System.Drawing.SystemColors.ScrollBar;
  72. this.pictureBox2.Location = new System.Drawing.Point(-2, 367);
  73. this.pictureBox2.Name = "pictureBox2";
  74. this.pictureBox2.Size = new System.Drawing.Size(395, 95);
  75. this.pictureBox2.TabIndex = 3;
  76. this.pictureBox2.TabStop = false;
  77. //
  78. // button2
  79. //
  80. this.button2.BackColor = System.Drawing.SystemColors.Menu;
  81. this.button2.Location = new System.Drawing.Point(108, 227);
  82. this.button2.Name = "button2";
  83. this.button2.Size = new System.Drawing.Size(132, 49);
  84. this.button2.TabIndex = 4;
  85. this.button2.Text = "Просмотр истории покупок";
  86. this.button2.UseVisualStyleBackColor = false;
  87. this.button2.Click += new System.EventHandler(this.button2_Click);
  88. //
  89. // button3
  90. //
  91. this.button3.BackColor = System.Drawing.SystemColors.Menu;
  92. this.button3.Location = new System.Drawing.Point(246, 389);
  93. this.button3.Name = "button3";
  94. this.button3.Size = new System.Drawing.Size(132, 49);
  95. this.button3.TabIndex = 5;
  96. this.button3.Text = "Выйти из базы данных";
  97. this.button3.UseVisualStyleBackColor = false;
  98. this.button3.Click += new System.EventHandler(this.button3_Click);
  99. //
  100. // Form1
  101. //
  102. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  103. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  104. this.ClientSize = new System.Drawing.Size(390, 450);
  105. this.Controls.Add(this.button3);
  106. this.Controls.Add(this.button2);
  107. this.Controls.Add(this.pictureBox2);
  108. this.Controls.Add(this.pictureBox1);
  109. this.Controls.Add(this.button1);
  110. this.Controls.Add(this.label1);
  111. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
  112. this.MaximizeBox = false;
  113. this.MinimizeBox = false;
  114. this.Name = "Form1";
  115. this.Text = "База данных \"Учет товаров\"";
  116. this.Load += new System.EventHandler(this.Form1_Load);
  117. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  118. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  119. this.ResumeLayout(false);
  120. }
  121. #endregion
  122. private System.Windows.Forms.Label label1;
  123. private System.Windows.Forms.Button button1;
  124. private System.Windows.Forms.PictureBox pictureBox1;
  125. private System.Windows.Forms.PictureBox pictureBox2;
  126. private System.Windows.Forms.Button button2;
  127. private System.Windows.Forms.Button button3;
  128. }
  129. }