WIP: PIBD-24_Khalikova.A.R_Polyclinic_LabWork_1 #1
@ -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();
|
||||
|
@ -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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -107,6 +107,7 @@
|
||||
Controls.Add(dataGridViewData);
|
||||
Controls.Add(panel1);
|
||||
Name = "FormDoctors";
|
||||
StartPosition = FormStartPosition.CenterParent;
|
||||
Text = "Врачи";
|
||||
Load += FormDoctors_Load;
|
||||
panel1.ResumeLayout(false);
|
||||
|
@ -122,6 +122,7 @@
|
||||
Controls.Add(textBoxDosing);
|
||||
Controls.Add(checkedListBoxMedicinesType);
|
||||
Name = "FormMedication";
|
||||
StartPosition = FormStartPosition.CenterParent;
|
||||
Text = "Медикамент";
|
||||
ResumeLayout(false);
|
||||
PerformLayout();
|
||||
|
@ -104,6 +104,7 @@
|
||||
Controls.Add(label2);
|
||||
Controls.Add(label1);
|
||||
Name = "FormProfessionalDevelopment";
|
||||
StartPosition = FormStartPosition.CenterParent;
|
||||
Text = "Повышение квалификации врача";
|
||||
ResumeLayout(false);
|
||||
PerformLayout();
|
||||
|
@ -81,6 +81,7 @@
|
||||
Controls.Add(dataGridViewData);
|
||||
Controls.Add(panel1);
|
||||
Name = "FormProfessional_developments";
|
||||
StartPosition = FormStartPosition.CenterParent;
|
||||
Text = "Повышение квалификации врачей";
|
||||
Load += FormProfessionalDevelopments_Load;
|
||||
panel1.ResumeLayout(false);
|
||||
|
@ -190,6 +190,7 @@
|
||||
Controls.Add(label2);
|
||||
Controls.Add(label1);
|
||||
Name = "FormVisiting";
|
||||
StartPosition = FormStartPosition.CenterParent;
|
||||
Text = "Визит";
|
||||
((System.ComponentModel.ISupportInitialize)dataGridViewMedicines).EndInit();
|
||||
groupBoxMedicines.ResumeLayout(false);
|
||||
|
Loading…
Reference in New Issue
Block a user