142 lines
4.8 KiB
C#
142 lines
4.8 KiB
C#
namespace ProjectPolyclinic.Forms
|
|
{
|
|
partial class FormDoctor
|
|
{
|
|
/// <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()
|
|
{
|
|
comboBoxSpec = new ComboBox();
|
|
label1 = new Label();
|
|
label2 = new Label();
|
|
label3 = new Label();
|
|
textBoxNameDoctor = new TextBox();
|
|
textBoxName2Doctor = new TextBox();
|
|
button1 = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// comboBoxSpec
|
|
//
|
|
comboBoxSpec.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
comboBoxSpec.FormattingEnabled = true;
|
|
comboBoxSpec.Location = new Point(170, 96);
|
|
comboBoxSpec.Name = "comboBoxSpec";
|
|
comboBoxSpec.Size = new Size(159, 23);
|
|
comboBoxSpec.TabIndex = 0;
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(34, 29);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(72, 15);
|
|
label1.TabIndex = 1;
|
|
label1.Text = "Имя врача :";
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(34, 69);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(99, 15);
|
|
label2.TabIndex = 2;
|
|
label2.Text = "Фамилия врача :";
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Location = new Point(34, 104);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(98, 15);
|
|
label3.TabIndex = 3;
|
|
label3.Text = "Специальность :";
|
|
//
|
|
// textBoxNameDoctor
|
|
//
|
|
textBoxNameDoctor.Location = new Point(170, 29);
|
|
textBoxNameDoctor.Name = "textBoxNameDoctor";
|
|
textBoxNameDoctor.Size = new Size(159, 23);
|
|
textBoxNameDoctor.TabIndex = 4;
|
|
//
|
|
// textBoxName2Doctor
|
|
//
|
|
textBoxName2Doctor.Location = new Point(170, 61);
|
|
textBoxName2Doctor.Name = "textBoxName2Doctor";
|
|
textBoxName2Doctor.Size = new Size(159, 23);
|
|
textBoxName2Doctor.TabIndex = 5;
|
|
//
|
|
// button1
|
|
//
|
|
button1.Location = new Point(66, 153);
|
|
button1.Name = "button1";
|
|
button1.Size = new Size(95, 34);
|
|
button1.TabIndex = 6;
|
|
button1.Text = "Сохранить";
|
|
button1.UseVisualStyleBackColor = true;
|
|
button1.Click += ButtonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(288, 153);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(95, 34);
|
|
buttonCancel.TabIndex = 7;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// FormDoctor
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(460, 237);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(button1);
|
|
Controls.Add(textBoxName2Doctor);
|
|
Controls.Add(textBoxNameDoctor);
|
|
Controls.Add(label3);
|
|
Controls.Add(label2);
|
|
Controls.Add(label1);
|
|
Controls.Add(comboBoxSpec);
|
|
Name = "FormDoctor";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "Врач";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComboBox comboBoxSpec;
|
|
private Label label1;
|
|
private Label label2;
|
|
private Label label3;
|
|
private TextBox textBoxNameDoctor;
|
|
private TextBox textBoxName2Doctor;
|
|
private Button button1;
|
|
private Button buttonCancel;
|
|
}
|
|
} |