129 lines
4.9 KiB
C#

namespace MedicalView.Specializations
{
partial class FormSpecialization
{
/// <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()
{
menuStrip = new MenuStrip();
ApplyToolStripMenuItem = new ToolStripMenuItem();
CancelToolStripMenuItem = new ToolStripMenuItem();
textBoxName = new TextBox();
label1 = new Label();
checkBoxIsPediatric = new CheckBox();
checkBoxIsTherapeutic = new CheckBox();
menuStrip.SuspendLayout();
SuspendLayout();
//
// menuStrip
//
menuStrip.ImageScalingSize = new Size(20, 20);
menuStrip.Items.AddRange(new ToolStripItem[] { ApplyToolStripMenuItem, CancelToolStripMenuItem });
menuStrip.Location = new Point(0, 0);
menuStrip.Name = "menuStrip";
menuStrip.Size = new Size(489, 28);
menuStrip.TabIndex = 20;
menuStrip.Text = "menuStrip1";
//
// ApplyToolStripMenuItem
//
ApplyToolStripMenuItem.Name = "ApplyToolStripMenuItem";
ApplyToolStripMenuItem.Size = new Size(97, 24);
ApplyToolStripMenuItem.Text = "Сохранить";
//
// CancelToolStripMenuItem
//
CancelToolStripMenuItem.Name = "CancelToolStripMenuItem";
CancelToolStripMenuItem.Size = new Size(76, 24);
CancelToolStripMenuItem.Text = "Отмена";
//
// textBoxName
//
textBoxName.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
textBoxName.Location = new Point(91, 34);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(386, 27);
textBoxName.TabIndex = 19;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 37);
label1.Name = "label1";
label1.Size = new Size(77, 20);
label1.TabIndex = 18;
label1.Text = "Название";
//
// checkBoxIsPediatric
//
checkBoxIsPediatric.AutoSize = true;
checkBoxIsPediatric.Location = new Point(12, 76);
checkBoxIsPediatric.Name = "checkBoxIsPediatric";
checkBoxIsPediatric.Size = new Size(145, 24);
checkBoxIsPediatric.TabIndex = 21;
checkBoxIsPediatric.Text = "Педиатрическая";
checkBoxIsPediatric.UseVisualStyleBackColor = true;
//
// checkBoxIsTherapeutic
//
checkBoxIsTherapeutic.AutoSize = true;
checkBoxIsTherapeutic.Location = new Point(183, 76);
checkBoxIsTherapeutic.Name = "checkBoxIsTherapeutic";
checkBoxIsTherapeutic.Size = new Size(150, 24);
checkBoxIsTherapeutic.TabIndex = 22;
checkBoxIsTherapeutic.Text = "Терапевтическая";
checkBoxIsTherapeutic.UseVisualStyleBackColor = true;
//
// FormSpecialization
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(489, 108);
Controls.Add(checkBoxIsTherapeutic);
Controls.Add(checkBoxIsPediatric);
Controls.Add(menuStrip);
Controls.Add(textBoxName);
Controls.Add(label1);
MinimumSize = new Size(0, 155);
Name = "FormSpecialization";
Text = "Редактировать специализацию";
menuStrip.ResumeLayout(false);
menuStrip.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
#endregion
private MenuStrip menuStrip;
private ToolStripMenuItem ApplyToolStripMenuItem;
private ToolStripMenuItem CancelToolStripMenuItem;
private TextBox textBoxName;
private Label label1;
private CheckBox checkBoxIsPediatric;
private CheckBox checkBoxIsTherapeutic;
}
}