| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- namespace RestaurantApp
- {
- partial class ReservationForm
- {
- private System.ComponentModel.IContainer components = null;
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- private void InitializeComponent()
- {
- this.dgvReservations = new System.Windows.Forms.DataGridView();
- this.panelTop = new System.Windows.Forms.Panel();
- this.cmbStatusFilter = new System.Windows.Forms.ComboBox();
- this.lblStatusFilter = new System.Windows.Forms.Label();
- this.txtSearch = new System.Windows.Forms.TextBox();
- this.btnSearch = new System.Windows.Forms.Button();
- this.btnRefresh = new System.Windows.Forms.Button();
- this.btnAdd = new System.Windows.Forms.Button();
- this.btnEdit = new System.Windows.Forms.Button();
- this.btnDelete = new System.Windows.Forms.Button();
- this.groupDetails = new System.Windows.Forms.GroupBox();
- this.lblNotes = new System.Windows.Forms.Label();
- this.lblDuration = new System.Windows.Forms.Label();
- this.lblDateTime = new System.Windows.Forms.Label();
- this.lblGuests = new System.Windows.Forms.Label();
- this.lblPhone = new System.Windows.Forms.Label();
- this.lblClient = new System.Windows.Forms.Label();
- this.lblTable = new System.Windows.Forms.Label();
- ((System.ComponentModel.ISupportInitialize)(this.dgvReservations)).BeginInit();
- this.panelTop.SuspendLayout();
- this.groupDetails.SuspendLayout();
- this.SuspendLayout();
- //
- // dgvReservations
- //
- this.dgvReservations.AllowUserToAddRows = false;
- this.dgvReservations.AllowUserToDeleteRows = false;
- this.dgvReservations.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
- this.dgvReservations.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dgvReservations.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvReservations.Location = new System.Drawing.Point(0, 50);
- this.dgvReservations.Name = "dgvReservations";
- this.dgvReservations.ReadOnly = true;
- this.dgvReservations.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvReservations.Size = new System.Drawing.Size(900, 400);
- this.dgvReservations.TabIndex = 0;
- //
- // panelTop
- //
- this.panelTop.Controls.Add(this.cmbStatusFilter);
- this.panelTop.Controls.Add(this.lblStatusFilter);
- this.panelTop.Controls.Add(this.txtSearch);
- this.panelTop.Controls.Add(this.btnSearch);
- this.panelTop.Controls.Add(this.btnRefresh);
- this.panelTop.Controls.Add(this.btnAdd);
- this.panelTop.Controls.Add(this.btnEdit);
- this.panelTop.Controls.Add(this.btnDelete);
- this.panelTop.Dock = System.Windows.Forms.DockStyle.Top;
- this.panelTop.Location = new System.Drawing.Point(0, 0);
- this.panelTop.Name = "panelTop";
- this.panelTop.Size = new System.Drawing.Size(900, 50);
- this.panelTop.TabIndex = 1;
- //
- // cmbStatusFilter
- //
- this.cmbStatusFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cmbStatusFilter.Items.AddRange(new object[] { "Все", "confirmed", "cancelled", "completed" });
- this.cmbStatusFilter.Location = new System.Drawing.Point(60, 14);
- this.cmbStatusFilter.Name = "cmbStatusFilter";
- this.cmbStatusFilter.Size = new System.Drawing.Size(100, 21);
- this.cmbStatusFilter.TabIndex = 10;
- //
- // lblStatusFilter
- //
- this.lblStatusFilter.AutoSize = true;
- this.lblStatusFilter.Location = new System.Drawing.Point(10, 17);
- this.lblStatusFilter.Name = "lblStatusFilter";
- this.lblStatusFilter.Size = new System.Drawing.Size(44, 13);
- this.lblStatusFilter.TabIndex = 9;
- this.lblStatusFilter.Text = "Статус:";
- //
- // txtSearch
- //
- this.txtSearch.Location = new System.Drawing.Point(180, 15);
- this.txtSearch.Name = "txtSearch";
- this.txtSearch.Size = new System.Drawing.Size(150, 20);
- this.txtSearch.TabIndex = 8;
- //
- // btnSearch
- //
- this.btnSearch.Location = new System.Drawing.Point(340, 13);
- this.btnSearch.Name = "btnSearch";
- this.btnSearch.Size = new System.Drawing.Size(70, 23);
- this.btnSearch.TabIndex = 7;
- this.btnSearch.Text = "Поиск";
- this.btnSearch.UseVisualStyleBackColor = true;
- //
- // btnRefresh
- //
- this.btnRefresh.Location = new System.Drawing.Point(420, 13);
- this.btnRefresh.Name = "btnRefresh";
- this.btnRefresh.Size = new System.Drawing.Size(80, 23);
- this.btnRefresh.TabIndex = 6;
- this.btnRefresh.Text = "Обновить";
- this.btnRefresh.UseVisualStyleBackColor = true;
- //
- // btnAdd
- //
- this.btnAdd.BackColor = System.Drawing.Color.LimeGreen;
- this.btnAdd.Location = new System.Drawing.Point(620, 13);
- this.btnAdd.Name = "btnAdd";
- this.btnAdd.Size = new System.Drawing.Size(80, 23);
- this.btnAdd.TabIndex = 5;
- this.btnAdd.Text = "Добавить";
- this.btnAdd.UseVisualStyleBackColor = false;
- //
- // btnEdit
- //
- this.btnEdit.Location = new System.Drawing.Point(710, 13);
- this.btnEdit.Name = "btnEdit";
- this.btnEdit.Size = new System.Drawing.Size(80, 23);
- this.btnEdit.TabIndex = 4;
- this.btnEdit.Text = "Изменить";
- this.btnEdit.UseVisualStyleBackColor = true;
- //
- // btnDelete
- //
- this.btnDelete.BackColor = System.Drawing.Color.IndianRed;
- this.btnDelete.Location = new System.Drawing.Point(800, 13);
- this.btnDelete.Name = "btnDelete";
- this.btnDelete.Size = new System.Drawing.Size(80, 23);
- this.btnDelete.TabIndex = 3;
- this.btnDelete.Text = "Удалить";
- this.btnDelete.UseVisualStyleBackColor = false;
- //
- // groupDetails
- //
- this.groupDetails.Controls.Add(this.lblNotes);
- this.groupDetails.Controls.Add(this.lblDuration);
- this.groupDetails.Controls.Add(this.lblDateTime);
- this.groupDetails.Controls.Add(this.lblGuests);
- this.groupDetails.Controls.Add(this.lblPhone);
- this.groupDetails.Controls.Add(this.lblClient);
- this.groupDetails.Controls.Add(this.lblTable);
- this.groupDetails.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.groupDetails.Location = new System.Drawing.Point(0, 450);
- this.groupDetails.Name = "groupDetails";
- this.groupDetails.Size = new System.Drawing.Size(900, 120);
- this.groupDetails.TabIndex = 2;
- this.groupDetails.TabStop = false;
- this.groupDetails.Text = "Детали бронирования";
- //
- // lblTable
- //
- this.lblTable.AutoSize = true;
- this.lblTable.Location = new System.Drawing.Point(15, 25);
- this.lblTable.Name = "lblTable";
- this.lblTable.Size = new System.Drawing.Size(38, 13);
- this.lblTable.TabIndex = 0;
- this.lblTable.Text = "Стол: ";
- //
- // lblClient
- //
- this.lblClient.AutoSize = true;
- this.lblClient.Location = new System.Drawing.Point(15, 45);
- this.lblClient.Name = "lblClient";
- this.lblClient.Size = new System.Drawing.Size(46, 13);
- this.lblClient.TabIndex = 1;
- this.lblClient.Text = "Клиент:";
- //
- // lblPhone
- //
- this.lblPhone.AutoSize = true;
- this.lblPhone.Location = new System.Drawing.Point(15, 65);
- this.lblPhone.Name = "lblPhone";
- this.lblPhone.Size = new System.Drawing.Size(55, 13);
- this.lblPhone.TabIndex = 2;
- this.lblPhone.Text = "Телефон:";
- //
- // lblGuests
- //
- this.lblGuests.AutoSize = true;
- this.lblGuests.Location = new System.Drawing.Point(15, 85);
- this.lblGuests.Name = "lblGuests";
- this.lblGuests.Size = new System.Drawing.Size(67, 13);
- this.lblGuests.TabIndex = 3;
- this.lblGuests.Text = "Кол-во гостей:";
- //
- // lblDateTime
- //
- this.lblDateTime.AutoSize = true;
- this.lblDateTime.Location = new System.Drawing.Point(400, 25);
- this.lblDateTime.Name = "lblDateTime";
- this.lblDateTime.Size = new System.Drawing.Size(67, 13);
- this.lblDateTime.TabIndex = 4;
- this.lblDateTime.Text = "Дата/время:";
- //
- // lblDuration
- //
- this.lblDuration.AutoSize = true;
- this.lblDuration.Location = new System.Drawing.Point(400, 45);
- this.lblDuration.Name = "lblDuration";
- this.lblDuration.Size = new System.Drawing.Size(76, 13);
- this.lblDuration.TabIndex = 5;
- this.lblDuration.Text = "Длительность:";
- //
- // lblNotes
- //
- this.lblNotes.AutoSize = true;
- this.lblNotes.Location = new System.Drawing.Point(400, 65);
- this.lblNotes.Name = "lblNotes";
- this.lblNotes.Size = new System.Drawing.Size(73, 13);
- this.lblNotes.TabIndex = 6;
- this.lblNotes.Text = "Примечание:";
- //
- // ReservationForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(900, 570);
- this.Controls.Add(this.dgvReservations);
- this.Controls.Add(this.groupDetails);
- this.Controls.Add(this.panelTop);
- this.Name = "ReservationForm";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "Управление бронированиями";
- ((System.ComponentModel.ISupportInitialize)(this.dgvReservations)).EndInit();
- this.panelTop.ResumeLayout(false);
- this.panelTop.PerformLayout();
- this.groupDetails.ResumeLayout(false);
- this.groupDetails.PerformLayout();
- this.ResumeLayout(false);
- }
- private System.Windows.Forms.DataGridView dgvReservations;
- private System.Windows.Forms.Panel panelTop;
- private System.Windows.Forms.ComboBox cmbStatusFilter;
- private System.Windows.Forms.Label lblStatusFilter;
- private System.Windows.Forms.TextBox txtSearch;
- private System.Windows.Forms.Button btnSearch;
- private System.Windows.Forms.Button btnRefresh;
- private System.Windows.Forms.Button btnAdd;
- private System.Windows.Forms.Button btnEdit;
- private System.Windows.Forms.Button btnDelete;
- private System.Windows.Forms.GroupBox groupDetails;
- private System.Windows.Forms.Label lblTable;
- private System.Windows.Forms.Label lblClient;
- private System.Windows.Forms.Label lblPhone;
- private System.Windows.Forms.Label lblGuests;
- private System.Windows.Forms.Label lblDateTime;
- private System.Windows.Forms.Label lblDuration;
- private System.Windows.Forms.Label lblNotes;
- }
- }
|