263 lines
9.7 KiB
C#
263 lines
9.7 KiB
C#
using Register_office.View;
|
|
|
|
namespace Register_office.View.PatientV
|
|
{
|
|
partial class HospitalForm
|
|
{
|
|
/// <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()
|
|
{
|
|
components = new System.ComponentModel.Container();
|
|
splitContainer1 = new SplitContainer();
|
|
dtpArrive = new DateTimePicker();
|
|
label6 = new Label();
|
|
label3 = new Label();
|
|
cbDisease = new ComboBox();
|
|
label2 = new Label();
|
|
cbPatient = new ComboBox();
|
|
btnAddHospitalAdmission = new Button();
|
|
btnUpdate = new Button();
|
|
btnDelete = new Button();
|
|
btnHospitalDischarge = new Button();
|
|
dgv = new DataGridView();
|
|
cmsMedicineProductCost = new ContextMenuStrip(components);
|
|
cmsMedicineProduct = new ContextMenuStrip(components);
|
|
((System.ComponentModel.ISupportInitialize)splitContainer1).BeginInit();
|
|
splitContainer1.Panel1.SuspendLayout();
|
|
splitContainer1.Panel2.SuspendLayout();
|
|
splitContainer1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)dgv).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// splitContainer1
|
|
//
|
|
splitContainer1.Dock = DockStyle.Fill;
|
|
splitContainer1.FixedPanel = FixedPanel.Panel1;
|
|
splitContainer1.Location = new Point(0, 0);
|
|
splitContainer1.Name = "splitContainer1";
|
|
splitContainer1.Orientation = Orientation.Horizontal;
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
splitContainer1.Panel1.Controls.Add(dtpArrive);
|
|
splitContainer1.Panel1.Controls.Add(label6);
|
|
splitContainer1.Panel1.Controls.Add(label3);
|
|
splitContainer1.Panel1.Controls.Add(cbDisease);
|
|
splitContainer1.Panel1.Controls.Add(label2);
|
|
splitContainer1.Panel1.Controls.Add(cbPatient);
|
|
splitContainer1.Panel1.Controls.Add(btnAddHospitalAdmission);
|
|
splitContainer1.Panel1.Controls.Add(btnUpdate);
|
|
splitContainer1.Panel1.Controls.Add(btnDelete);
|
|
splitContainer1.Panel1.Controls.Add(btnHospitalDischarge);
|
|
//
|
|
// splitContainer1.Panel2
|
|
//
|
|
splitContainer1.Panel2.Controls.Add(dgv);
|
|
splitContainer1.Size = new Size(800, 647);
|
|
splitContainer1.SplitterDistance = 125;
|
|
splitContainer1.SplitterWidth = 5;
|
|
splitContainer1.TabIndex = 0;
|
|
//
|
|
// dtpArrive
|
|
//
|
|
dtpArrive.CustomFormat = "HH:mm dd.MM.yyyy";
|
|
dtpArrive.Font = new Font("Segoe UI", 9.75F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|
dtpArrive.Format = DateTimePickerFormat.Custom;
|
|
dtpArrive.Location = new Point(232, 78);
|
|
dtpArrive.MinDate = new DateTime(1940, 1, 1, 0, 0, 0, 0);
|
|
dtpArrive.Name = "dtpArrive";
|
|
dtpArrive.Size = new Size(139, 25);
|
|
dtpArrive.TabIndex = 19;
|
|
//
|
|
// label6
|
|
//
|
|
label6.AutoSize = true;
|
|
label6.Font = new Font("Segoe UI", 9.75F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|
label6.Location = new Point(232, 58);
|
|
label6.Name = "label6";
|
|
label6.Size = new Size(114, 17);
|
|
label6.TabIndex = 20;
|
|
label6.Text = "Дата поступления";
|
|
//
|
|
// label3
|
|
//
|
|
label3.Anchor = AnchorStyles.Top | AnchorStyles.Bottom;
|
|
label3.AutoSize = true;
|
|
label3.Font = new Font("Segoe UI", 9.75F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|
label3.Location = new Point(12, 58);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(127, 17);
|
|
label3.TabIndex = 18;
|
|
label3.Text = "Предварит. диагноз";
|
|
//
|
|
// cbDisease
|
|
//
|
|
cbDisease.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
cbDisease.FormattingEnabled = true;
|
|
cbDisease.Items.AddRange(new object[] { "Физикальное", "Лабораторное", "Инструментальное" });
|
|
cbDisease.Location = new Point(12, 78);
|
|
cbDisease.Name = "cbDisease";
|
|
cbDisease.Size = new Size(211, 25);
|
|
cbDisease.TabIndex = 17;
|
|
//
|
|
// label2
|
|
//
|
|
label2.Anchor = AnchorStyles.Top | AnchorStyles.Bottom;
|
|
label2.AutoSize = true;
|
|
label2.Font = new Font("Segoe UI", 9.75F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|
label2.Location = new Point(12, 9);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(57, 17);
|
|
label2.TabIndex = 16;
|
|
label2.Text = "Пациент";
|
|
//
|
|
// cbPatient
|
|
//
|
|
cbPatient.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
cbPatient.FormattingEnabled = true;
|
|
cbPatient.Items.AddRange(new object[] { "Физикальное", "Лабораторное", "Инструментальное" });
|
|
cbPatient.Location = new Point(12, 30);
|
|
cbPatient.Name = "cbPatient";
|
|
cbPatient.Size = new Size(214, 25);
|
|
cbPatient.TabIndex = 15;
|
|
//
|
|
// btnAddHospitalAdmission
|
|
//
|
|
btnAddHospitalAdmission.Anchor = AnchorStyles.Top | AnchorStyles.Bottom;
|
|
btnAddHospitalAdmission.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
btnAddHospitalAdmission.Font = new Font("Segoe UI", 11.25F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|
btnAddHospitalAdmission.Location = new Point(455, 73);
|
|
btnAddHospitalAdmission.Name = "btnAddHospitalAdmission";
|
|
btnAddHospitalAdmission.Size = new Size(333, 33);
|
|
btnAddHospitalAdmission.TabIndex = 12;
|
|
btnAddHospitalAdmission.Text = "Добавить";
|
|
btnAddHospitalAdmission.UseVisualStyleBackColor = true;
|
|
btnAddHospitalAdmission.Click += btnAddHospitalAdmission_Click;
|
|
//
|
|
// btnUpdate
|
|
//
|
|
btnUpdate.Anchor = AnchorStyles.Top | AnchorStyles.Bottom;
|
|
btnUpdate.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
btnUpdate.Font = new Font("Segoe UI", 11.25F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|
btnUpdate.Location = new Point(455, 25);
|
|
btnUpdate.Name = "btnUpdate";
|
|
btnUpdate.Size = new Size(169, 33);
|
|
btnUpdate.TabIndex = 11;
|
|
btnUpdate.Text = "Изменить";
|
|
btnUpdate.UseVisualStyleBackColor = true;
|
|
btnUpdate.Click += btnUpdate_Click;
|
|
//
|
|
// btnDelete
|
|
//
|
|
btnDelete.Anchor = AnchorStyles.Top | AnchorStyles.Bottom;
|
|
btnDelete.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
btnDelete.Font = new Font("Segoe UI", 11.25F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|
btnDelete.Location = new Point(630, 25);
|
|
btnDelete.Name = "btnDelete";
|
|
btnDelete.Size = new Size(158, 33);
|
|
btnDelete.TabIndex = 10;
|
|
btnDelete.Text = "Удалить";
|
|
btnDelete.UseVisualStyleBackColor = true;
|
|
btnDelete.Click += btnDelete_Click;
|
|
//
|
|
// btnHospitalDischarge
|
|
//
|
|
btnHospitalDischarge.Anchor = AnchorStyles.Top | AnchorStyles.Bottom;
|
|
btnHospitalDischarge.AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
btnHospitalDischarge.Font = new Font("Segoe UI", 11.25F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|
btnHospitalDischarge.Location = new Point(232, 25);
|
|
btnHospitalDischarge.Name = "btnHospitalDischarge";
|
|
btnHospitalDischarge.Size = new Size(217, 33);
|
|
btnHospitalDischarge.TabIndex = 7;
|
|
btnHospitalDischarge.Text = "Завершить госпитализацию";
|
|
btnHospitalDischarge.UseVisualStyleBackColor = true;
|
|
btnHospitalDischarge.Click += btnHospitalDischarge_Click;
|
|
//
|
|
// dgv
|
|
//
|
|
dgv.AllowUserToAddRows = false;
|
|
dgv.AllowUserToDeleteRows = false;
|
|
dgv.AllowUserToOrderColumns = true;
|
|
dgv.ClipboardCopyMode = DataGridViewClipboardCopyMode.EnableWithoutHeaderText;
|
|
dgv.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dgv.Dock = DockStyle.Fill;
|
|
dgv.Location = new Point(0, 0);
|
|
dgv.MultiSelect = false;
|
|
dgv.Name = "dgv";
|
|
dgv.ReadOnly = true;
|
|
dgv.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
|
|
dgv.Size = new Size(800, 517);
|
|
dgv.TabIndex = 8;
|
|
dgv.SelectionChanged += dgv_SelectionChanged;
|
|
//
|
|
// cmsMedicineProductCost
|
|
//
|
|
cmsMedicineProductCost.Font = new Font("Segoe UI", 9.75F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|
cmsMedicineProductCost.Name = "cmsMedicineProductCost";
|
|
cmsMedicineProductCost.Size = new Size(61, 4);
|
|
//
|
|
// cmsMedicineProduct
|
|
//
|
|
cmsMedicineProduct.Name = "contextMenuStrip1";
|
|
cmsMedicineProduct.Size = new Size(61, 4);
|
|
//
|
|
// HospitalForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 17F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 647);
|
|
Controls.Add(splitContainer1);
|
|
Font = new Font("Segoe UI", 9.75F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|
FormBorderStyle = FormBorderStyle.FixedSingle;
|
|
Name = "HospitalForm";
|
|
Text = "Госпитализации";
|
|
splitContainer1.Panel1.ResumeLayout(false);
|
|
splitContainer1.Panel1.PerformLayout();
|
|
splitContainer1.Panel2.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)splitContainer1).EndInit();
|
|
splitContainer1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)dgv).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private SplitContainer splitContainer1;
|
|
private DataGridView dgv;
|
|
private ContextMenuStrip cmsMedicineProduct;
|
|
private ContextMenuStrip cmsMedicineProductCost;
|
|
private Button btnHospitalDischarge;
|
|
private Button btnDelete;
|
|
private Button btnAddHospitalAdmission;
|
|
private Button btnUpdate;
|
|
private Label label3;
|
|
private ComboBox cbDisease;
|
|
private Label label2;
|
|
private ComboBox cbPatient;
|
|
internal DateTimePicker dtpArrive;
|
|
private Label label6;
|
|
}
|
|
} |