Form3.Designer.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. 
  2. namespace Cafe12
  3. {
  4. partial class OficiantForm
  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.dataGridView1 = new System.Windows.Forms.DataGridView();
  30. this.label1 = new System.Windows.Forms.Label();
  31. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  32. this.SuspendLayout();
  33. //
  34. // dataGridView1
  35. //
  36. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  37. this.dataGridView1.Location = new System.Drawing.Point(12, 32);
  38. this.dataGridView1.Name = "dataGridView1";
  39. this.dataGridView1.Size = new System.Drawing.Size(240, 406);
  40. this.dataGridView1.TabIndex = 0;
  41. //
  42. // label1
  43. //
  44. this.label1.AutoSize = true;
  45. this.label1.Location = new System.Drawing.Point(12, 13);
  46. this.label1.Name = "label1";
  47. this.label1.Size = new System.Drawing.Size(35, 13);
  48. this.label1.TabIndex = 1;
  49. this.label1.Text = "label1";
  50. this.label1.Click += new System.EventHandler(this.label1_Click);
  51. //
  52. // OficiantForm
  53. //
  54. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  55. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  56. this.ClientSize = new System.Drawing.Size(662, 450);
  57. this.Controls.Add(this.label1);
  58. this.Controls.Add(this.dataGridView1);
  59. this.Name = "OficiantForm";
  60. this.Text = "Окно Официанта";
  61. this.Load += new System.EventHandler(this.Form3_Load);
  62. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  63. this.ResumeLayout(false);
  64. this.PerformLayout();
  65. }
  66. #endregion
  67. private System.Windows.Forms.DataGridView dataGridView1;
  68. private System.Windows.Forms.Label label1;
  69. }
  70. }