namespace PolyclinicView { partial class FormCourse { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// 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(); buttonAddDiagnose = new Button(); buttonRemoveDiagnose = new Button(); labelTableName = new Label(); ((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, 135); dataGridView.Name = "dataGridView"; dataGridView.RowHeadersWidth = 51; dataGridView.RowTemplate.Height = 29; dataGridView.Size = new Size(475, 221); dataGridView.TabIndex = 8; // // buttonAddDiagnose // buttonAddDiagnose.Anchor = AnchorStyles.Top | AnchorStyles.Right; buttonAddDiagnose.Location = new Point(518, 140); buttonAddDiagnose.Name = "buttonAddDiagnose"; buttonAddDiagnose.Size = new Size(94, 55); buttonAddDiagnose.TabIndex = 9; buttonAddDiagnose.Text = "Добавить болезнь"; buttonAddDiagnose.UseVisualStyleBackColor = true; // // buttonRemoveDiagnose // buttonRemoveDiagnose.Anchor = AnchorStyles.Top | AnchorStyles.Right; buttonRemoveDiagnose.Location = new Point(518, 243); buttonRemoveDiagnose.Name = "buttonRemoveDiagnose"; buttonRemoveDiagnose.Size = new Size(94, 56); buttonRemoveDiagnose.TabIndex = 10; buttonRemoveDiagnose.Text = "Удалить болезнь"; buttonRemoveDiagnose.UseVisualStyleBackColor = true; // // labelTableName // labelTableName.AutoSize = true; labelTableName.Location = new Point(12, 112); labelTableName.Name = "labelTableName"; labelTableName.Size = new Size(68, 20); labelTableName.TabIndex = 11; labelTableName.Text = "Болезни"; // // FormCourse // AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(652, 403); Controls.Add(labelTableName); Controls.Add(buttonRemoveDiagnose); Controls.Add(buttonAddDiagnose); 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 buttonAddDiagnose; private Button buttonRemoveDiagnose; private Label labelTableName; } }