ClientForm.Designer.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. namespace RestaurantApp
  2. {
  3. partial class ClientForm
  4. {
  5. private System.ComponentModel.IContainer components = null;
  6. protected override void Dispose(bool disposing)
  7. {
  8. if (disposing && (components != null))
  9. {
  10. components.Dispose();
  11. }
  12. base.Dispose(disposing);
  13. }
  14. private void InitializeComponent()
  15. {
  16. this.dgvClients = new System.Windows.Forms.DataGridView();
  17. this.txtSearch = new System.Windows.Forms.TextBox();
  18. this.btnSearch = new System.Windows.Forms.Button();
  19. this.btnAdd = new System.Windows.Forms.Button();
  20. this.btnEdit = new System.Windows.Forms.Button();
  21. this.btnDelete = new System.Windows.Forms.Button();
  22. this.btnRefresh = new System.Windows.Forms.Button();
  23. this.lblSearch = new System.Windows.Forms.Label();
  24. this.panelButtons = new System.Windows.Forms.Panel();
  25. ((System.ComponentModel.ISupportInitialize)(this.dgvClients)).BeginInit();
  26. this.panelButtons.SuspendLayout();
  27. this.SuspendLayout();
  28. //
  29. // dgvClients
  30. //
  31. this.dgvClients.AllowUserToAddRows = false;
  32. this.dgvClients.AllowUserToDeleteRows = false;
  33. this.dgvClients.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  34. this.dgvClients.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  35. this.dgvClients.Dock = System.Windows.Forms.DockStyle.Fill;
  36. this.dgvClients.Location = new System.Drawing.Point(0, 50);
  37. this.dgvClients.Name = "dgvClients";
  38. this.dgvClients.ReadOnly = true;
  39. this.dgvClients.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  40. this.dgvClients.Size = new System.Drawing.Size(884, 461);
  41. this.dgvClients.TabIndex = 0;
  42. //
  43. // txtSearch
  44. //
  45. this.txtSearch.Location = new System.Drawing.Point(60, 15);
  46. this.txtSearch.Name = "txtSearch";
  47. this.txtSearch.Size = new System.Drawing.Size(200, 20);
  48. this.txtSearch.TabIndex = 1;
  49. //
  50. // btnSearch
  51. //
  52. this.btnSearch.Location = new System.Drawing.Point(270, 12);
  53. this.btnSearch.Name = "btnSearch";
  54. this.btnSearch.Size = new System.Drawing.Size(75, 23);
  55. this.btnSearch.TabIndex = 2;
  56. this.btnSearch.Text = "Поиск";
  57. this.btnSearch.UseVisualStyleBackColor = true;
  58. //
  59. // btnAdd
  60. //
  61. this.btnAdd.Location = new System.Drawing.Point(370, 12);
  62. this.btnAdd.Name = "btnAdd";
  63. this.btnAdd.Size = new System.Drawing.Size(75, 23);
  64. this.btnAdd.TabIndex = 3;
  65. this.btnAdd.Text = "Добавить";
  66. this.btnAdd.UseVisualStyleBackColor = true;
  67. //
  68. // btnEdit
  69. //
  70. this.btnEdit.Location = new System.Drawing.Point(460, 12);
  71. this.btnEdit.Name = "btnEdit";
  72. this.btnEdit.Size = new System.Drawing.Size(75, 23);
  73. this.btnEdit.TabIndex = 4;
  74. this.btnEdit.Text = "Изменить";
  75. this.btnEdit.UseVisualStyleBackColor = true;
  76. //
  77. // btnDelete
  78. //
  79. this.btnDelete.Location = new System.Drawing.Point(550, 12);
  80. this.btnDelete.Name = "btnDelete";
  81. this.btnDelete.Size = new System.Drawing.Size(75, 23);
  82. this.btnDelete.TabIndex = 5;
  83. this.btnDelete.Text = "Удалить";
  84. this.btnDelete.UseVisualStyleBackColor = true;
  85. //
  86. // btnRefresh
  87. //
  88. this.btnRefresh.Location = new System.Drawing.Point(640, 12);
  89. this.btnRefresh.Name = "btnRefresh";
  90. this.btnRefresh.Size = new System.Drawing.Size(75, 23);
  91. this.btnRefresh.TabIndex = 6;
  92. this.btnRefresh.Text = "Обновить";
  93. this.btnRefresh.UseVisualStyleBackColor = true;
  94. //
  95. // lblSearch
  96. //
  97. this.lblSearch.AutoSize = true;
  98. this.lblSearch.Location = new System.Drawing.Point(12, 18);
  99. this.lblSearch.Name = "lblSearch";
  100. this.lblSearch.Size = new System.Drawing.Size(42, 13);
  101. this.lblSearch.TabIndex = 7;
  102. this.lblSearch.Text = "Поиск:";
  103. //
  104. // panelButtons
  105. //
  106. this.panelButtons.Controls.Add(this.lblSearch);
  107. this.panelButtons.Controls.Add(this.txtSearch);
  108. this.panelButtons.Controls.Add(this.btnRefresh);
  109. this.panelButtons.Controls.Add(this.btnSearch);
  110. this.panelButtons.Controls.Add(this.btnDelete);
  111. this.panelButtons.Controls.Add(this.btnAdd);
  112. this.panelButtons.Controls.Add(this.btnEdit);
  113. this.panelButtons.Dock = System.Windows.Forms.DockStyle.Top;
  114. this.panelButtons.Location = new System.Drawing.Point(0, 0);
  115. this.panelButtons.Name = "panelButtons";
  116. this.panelButtons.Size = new System.Drawing.Size(884, 50);
  117. this.panelButtons.TabIndex = 8;
  118. //
  119. // ClientForm
  120. //
  121. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  122. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  123. this.ClientSize = new System.Drawing.Size(884, 511);
  124. this.Controls.Add(this.dgvClients);
  125. this.Controls.Add(this.panelButtons);
  126. this.Name = "ClientForm";
  127. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  128. this.Text = "Клиенты";
  129. ((System.ComponentModel.ISupportInitialize)(this.dgvClients)).EndInit();
  130. this.panelButtons.ResumeLayout(false);
  131. this.panelButtons.PerformLayout();
  132. this.ResumeLayout(false);
  133. }
  134. private System.Windows.Forms.DataGridView dgvClients;
  135. private System.Windows.Forms.TextBox txtSearch;
  136. private System.Windows.Forms.Button btnSearch;
  137. private System.Windows.Forms.Button btnAdd;
  138. private System.Windows.Forms.Button btnEdit;
  139. private System.Windows.Forms.Button btnDelete;
  140. private System.Windows.Forms.Button btnRefresh;
  141. private System.Windows.Forms.Label lblSearch;
  142. private System.Windows.Forms.Panel panelButtons;
  143. }
  144. }