192 lines
8.1 KiB
C#
192 lines
8.1 KiB
C#
namespace PolyclinicView
|
|
{
|
|
partial class FormCourse
|
|
{
|
|
/// <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()
|
|
{
|
|
buttonApply = new Button();
|
|
buttonCancel = new Button();
|
|
labelDaysCount = new Label();
|
|
labelPillsPerDay = new Label();
|
|
labelRecipe = new Label();
|
|
comboBoxRecipe = new ComboBox();
|
|
numericUpDownDaysCount = new NumericUpDown();
|
|
numericUpDownPillsPerDay = new NumericUpDown();
|
|
dataGridView = new DataGridView();
|
|
buttonAddElement = new Button();
|
|
buttonRemoveElement = new Button();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownDaysCount).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownPillsPerDay).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// buttonApply
|
|
//
|
|
buttonApply.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonApply.Location = new Point(446, 362);
|
|
buttonApply.Name = "buttonApply";
|
|
buttonApply.Size = new Size(94, 29);
|
|
buttonApply.TabIndex = 0;
|
|
buttonApply.Text = "Сохранить";
|
|
buttonApply.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
buttonCancel.Location = new Point(546, 362);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(94, 29);
|
|
buttonCancel.TabIndex = 1;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// labelDaysCount
|
|
//
|
|
labelDaysCount.AutoSize = true;
|
|
labelDaysCount.Location = new Point(12, 9);
|
|
labelDaysCount.Name = "labelDaysCount";
|
|
labelDaysCount.Size = new Size(128, 20);
|
|
labelDaysCount.TabIndex = 2;
|
|
labelDaysCount.Text = "Количество дней";
|
|
//
|
|
// labelPillsPerDay
|
|
//
|
|
labelPillsPerDay.AutoSize = true;
|
|
labelPillsPerDay.Location = new Point(12, 39);
|
|
labelPillsPerDay.Name = "labelPillsPerDay";
|
|
labelPillsPerDay.Size = new Size(217, 20);
|
|
labelPillsPerDay.TabIndex = 3;
|
|
labelPillsPerDay.Text = "Количество препарата в день";
|
|
labelPillsPerDay.TextAlign = ContentAlignment.MiddleCenter;
|
|
//
|
|
// labelRecipe
|
|
//
|
|
labelRecipe.AutoSize = true;
|
|
labelRecipe.Location = new Point(12, 75);
|
|
labelRecipe.Name = "labelRecipe";
|
|
labelRecipe.Size = new Size(57, 20);
|
|
labelRecipe.TabIndex = 4;
|
|
labelRecipe.Text = "Рецепт";
|
|
//
|
|
// comboBoxRecipe
|
|
//
|
|
comboBoxRecipe.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
comboBoxRecipe.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
comboBoxRecipe.FormattingEnabled = true;
|
|
comboBoxRecipe.Location = new Point(78, 72);
|
|
comboBoxRecipe.Name = "comboBoxRecipe";
|
|
comboBoxRecipe.Size = new Size(562, 28);
|
|
comboBoxRecipe.TabIndex = 5;
|
|
//
|
|
// numericUpDownDaysCount
|
|
//
|
|
numericUpDownDaysCount.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
numericUpDownDaysCount.Location = new Point(235, 7);
|
|
numericUpDownDaysCount.Name = "numericUpDownDaysCount";
|
|
numericUpDownDaysCount.Size = new Size(405, 27);
|
|
numericUpDownDaysCount.TabIndex = 6;
|
|
//
|
|
// numericUpDownPillsPerDay
|
|
//
|
|
numericUpDownPillsPerDay.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
numericUpDownPillsPerDay.Location = new Point(235, 37);
|
|
numericUpDownPillsPerDay.Name = "numericUpDownPillsPerDay";
|
|
numericUpDownPillsPerDay.Size = new Size(405, 27);
|
|
numericUpDownPillsPerDay.TabIndex = 7;
|
|
//
|
|
// dataGridView
|
|
//
|
|
dataGridView.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
|
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView.Location = new Point(12, 119);
|
|
dataGridView.Name = "dataGridView";
|
|
dataGridView.RowHeadersWidth = 51;
|
|
dataGridView.RowTemplate.Height = 29;
|
|
dataGridView.Size = new Size(475, 221);
|
|
dataGridView.TabIndex = 8;
|
|
//
|
|
// buttonAddElement
|
|
//
|
|
buttonAddElement.Anchor = AnchorStyles.Right;
|
|
buttonAddElement.Location = new Point(518, 140);
|
|
buttonAddElement.Name = "buttonAddElement";
|
|
buttonAddElement.Size = new Size(94, 55);
|
|
buttonAddElement.TabIndex = 9;
|
|
buttonAddElement.Text = "Добавить болезнь";
|
|
buttonAddElement.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonRemoveElement
|
|
//
|
|
buttonRemoveElement.Anchor = AnchorStyles.Right;
|
|
buttonRemoveElement.Location = new Point(518, 243);
|
|
buttonRemoveElement.Name = "buttonRemoveElement";
|
|
buttonRemoveElement.Size = new Size(94, 56);
|
|
buttonRemoveElement.TabIndex = 10;
|
|
buttonRemoveElement.Text = "Удалить болезнь";
|
|
buttonRemoveElement.UseVisualStyleBackColor = true;
|
|
//
|
|
// FormCourse
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(652, 403);
|
|
Controls.Add(buttonRemoveElement);
|
|
Controls.Add(buttonAddElement);
|
|
Controls.Add(dataGridView);
|
|
Controls.Add(numericUpDownPillsPerDay);
|
|
Controls.Add(numericUpDownDaysCount);
|
|
Controls.Add(comboBoxRecipe);
|
|
Controls.Add(labelRecipe);
|
|
Controls.Add(labelPillsPerDay);
|
|
Controls.Add(labelDaysCount);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonApply);
|
|
MinimumSize = new Size(670, 450);
|
|
Name = "FormCourse";
|
|
Text = "Редактировать курс";
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownDaysCount).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownPillsPerDay).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonApply;
|
|
private Button buttonCancel;
|
|
private Label labelDaysCount;
|
|
private Label labelPillsPerDay;
|
|
private Label labelRecipe;
|
|
private ComboBox comboBoxRecipe;
|
|
private NumericUpDown numericUpDownDaysCount;
|
|
private NumericUpDown numericUpDownPillsPerDay;
|
|
private DataGridView dataGridView;
|
|
private Button buttonAddElement;
|
|
private Button buttonRemoveElement;
|
|
}
|
|
} |