126 lines
5.0 KiB
C#
126 lines
5.0 KiB
C#
namespace PolyclinicView
|
|
{
|
|
partial class FormRecipes
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
buttonRefresh = new Button();
|
|
buttonDelete = new Button();
|
|
buttonUpdate = new Button();
|
|
buttonAdd = new Button();
|
|
dataGridView = new DataGridView();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// buttonRefresh
|
|
//
|
|
buttonRefresh.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
|
buttonRefresh.Location = new Point(630, 355);
|
|
buttonRefresh.Margin = new Padding(3, 4, 3, 4);
|
|
buttonRefresh.Name = "buttonRefresh";
|
|
buttonRefresh.Size = new Size(208, 69);
|
|
buttonRefresh.TabIndex = 19;
|
|
buttonRefresh.Text = "Обновить";
|
|
buttonRefresh.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonDelete
|
|
//
|
|
buttonDelete.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
|
buttonDelete.Location = new Point(630, 248);
|
|
buttonDelete.Margin = new Padding(3, 4, 3, 4);
|
|
buttonDelete.Name = "buttonDelete";
|
|
buttonDelete.Size = new Size(208, 69);
|
|
buttonDelete.TabIndex = 18;
|
|
buttonDelete.Text = "Удалить";
|
|
buttonDelete.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonUpdate
|
|
//
|
|
buttonUpdate.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
|
buttonUpdate.Location = new Point(630, 143);
|
|
buttonUpdate.Margin = new Padding(3, 4, 3, 4);
|
|
buttonUpdate.Name = "buttonUpdate";
|
|
buttonUpdate.Size = new Size(208, 69);
|
|
buttonUpdate.TabIndex = 17;
|
|
buttonUpdate.Text = "Изменить";
|
|
buttonUpdate.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
|
buttonAdd.Location = new Point(630, 35);
|
|
buttonAdd.Margin = new Padding(3, 4, 3, 4);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(208, 69);
|
|
buttonAdd.TabIndex = 16;
|
|
buttonAdd.Text = "Добавить";
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
|
dataGridView.BackgroundColor = Color.AliceBlue;
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Location = new Point(0, 0);
|
|
dataGridView.Margin = new Padding(3, 4, 3, 4);
|
|
dataGridView.MultiSelect = false;
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.ReadOnly = true;
|
|
dataGridView.RowHeadersVisible = false;
|
|
dataGridView.RowHeadersWidth = 51;
|
|
dataGridView.RowTemplate.Height = 29;
|
|
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
dataGridView.Size = new Size(554, 437);
|
|
dataGridView.TabIndex = 15;
|
|
//
|
|
// FormRecipes
|
|
//
|
|
AutoScaleDimensions = new SizeF(9F, 21F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackColor = SystemColors.ActiveCaption;
|
|
ClientSize = new Size(889, 437);
|
|
Controls.Add(buttonRefresh);
|
|
Controls.Add(buttonDelete);
|
|
Controls.Add(buttonUpdate);
|
|
Controls.Add(buttonAdd);
|
|
Controls.Add(dataGridView);
|
|
Font = new Font("Candara", 10.2F, FontStyle.Regular, GraphicsUnit.Point);
|
|
Name = "FormRecipes";
|
|
Text = "Список рецептов";
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonRefresh;
|
|
private Button buttonDelete;
|
|
private Button buttonUpdate;
|
|
private Button buttonAdd;
|
|
private DataGridView dataGridView;
|
|
}
|
|
} |