WIP: PIBD-24_Khalikova.A.R_Polyclinic_LabWork_1 #1

Draft
Adelina wants to merge 3 commits from LabWork_1 into main
7 changed files with 14 additions and 3 deletions
Showing only changes of commit a56d1f3a43 - Show all commits

View File

@ -100,7 +100,7 @@
//
// buttonCancel
//
buttonCancel.Location = new Point(194, 153);
buttonCancel.Location = new Point(288, 153);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(95, 34);
buttonCancel.TabIndex = 7;
@ -122,6 +122,7 @@
Controls.Add(label1);
Controls.Add(comboBoxSpec);
Name = "FormDoctor";
StartPosition = FormStartPosition.CenterParent;
Text = "Врач";
ResumeLayout(false);
PerformLayout();

View File

@ -33,7 +33,7 @@ namespace ProjectPolyclinic.Forms
comboBoxSpec.SelectedItem = doctor.Specialization;
_doctorId = value;
}
catch(Exception ex)
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Ошибка при полученииданных", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
@ -77,7 +77,12 @@ namespace ProjectPolyclinic.Forms
}
private void ButtonCancel_Click(object sender, EventArgs e) => Close();
private Doctor CreateDoctor(int id) => Doctor.CreateEntity(id, textBoxNameDoctor.Text, textBoxName2Doctor.Text,
private Doctor CreateDoctor(int id) => Doctor.CreateEntity(id, textBoxNameDoctor.Text, textBoxName2Doctor.Text,
(Specialization)comboBoxSpec.SelectedItem!);
private void FormDoctor_Load(object sender, EventArgs e)
{
}
}
}

View File

@ -107,6 +107,7 @@
Controls.Add(dataGridViewData);
Controls.Add(panel1);
Name = "FormDoctors";
StartPosition = FormStartPosition.CenterParent;
Text = "Врачи";
Load += FormDoctors_Load;
panel1.ResumeLayout(false);

View File

@ -122,6 +122,7 @@
Controls.Add(textBoxDosing);
Controls.Add(checkedListBoxMedicinesType);
Name = "FormMedication";
StartPosition = FormStartPosition.CenterParent;
Text = "Медикамент";
ResumeLayout(false);
PerformLayout();

View File

@ -104,6 +104,7 @@
Controls.Add(label2);
Controls.Add(label1);
Name = "FormProfessionalDevelopment";
StartPosition = FormStartPosition.CenterParent;
Text = "Повышение квалификации врача";
ResumeLayout(false);
PerformLayout();

View File

@ -81,6 +81,7 @@
Controls.Add(dataGridViewData);
Controls.Add(panel1);
Name = "FormProfessional_developments";
StartPosition = FormStartPosition.CenterParent;
Text = "Повышение квалификации врачей";
Load += FormProfessionalDevelopments_Load;
panel1.ResumeLayout(false);

View File

@ -190,6 +190,7 @@
Controls.Add(label2);
Controls.Add(label1);
Name = "FormVisiting";
StartPosition = FormStartPosition.CenterParent;
Text = "Визит";
((System.ComponentModel.ISupportInitialize)dataGridViewMedicines).EndInit();
groupBoxMedicines.ResumeLayout(false);