frmmenzhenyishi.designer.cs

来自「用c#编写的医院管理系统(部分源码)」· CS 代码 · 共 345 行 · 第 1/2 页

CS
345
字号
namespace Hospital.Hospital.view
{
    partial class frmMenZhenYiShi
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMenZhenYiShi));
            this.dataGridView1 = new System.Windows.Forms.DataGridView();
            this.gbYiShi = new System.Windows.Forms.GroupBox();
            this.gbXinXi = new System.Windows.Forms.GroupBox();
            this.cbKeShi = new System.Windows.Forms.ComboBox();
            this.cbZhiCheng = new System.Windows.Forms.ComboBox();
            this.cbXueLi = new System.Windows.Forms.ComboBox();
            this.cbSex = new System.Windows.Forms.ComboBox();
            this.txtAge = new System.Windows.Forms.TextBox();
            this.txtName = new System.Windows.Forms.TextBox();
            this.lblKeShi = new System.Windows.Forms.Label();
            this.lblZhiCheng = new System.Windows.Forms.Label();
            this.lblXueLi = new System.Windows.Forms.Label();
            this.lblAge = new System.Windows.Forms.Label();
            this.lblSex = new System.Windows.Forms.Label();
            this.lblName = new System.Windows.Forms.Label();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.btnAdd = new System.Windows.Forms.Button();
            this.btnDelete = new System.Windows.Forms.Button();
            this.btnShuaXin = new System.Windows.Forms.Button();
            this.btnDaYin = new System.Windows.Forms.Button();
            this.btnCanel = new System.Windows.Forms.Button();
            this.btnUpdate = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
            this.gbYiShi.SuspendLayout();
            this.gbXinXi.SuspendLayout();
            this.SuspendLayout();
            // 
            // dataGridView1
            // 
            this.dataGridView1.AllowUserToAddRows = false;
            this.dataGridView1.AllowUserToDeleteRows = false;
            this.dataGridView1.BackgroundColor = System.Drawing.Color.White;
            this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridView1.Location = new System.Drawing.Point(3, 17);
            this.dataGridView1.Name = "dataGridView1";
            this.dataGridView1.ReadOnly = true;
            this.dataGridView1.RowTemplate.Height = 23;
            this.dataGridView1.Size = new System.Drawing.Size(363, 289);
            this.dataGridView1.TabIndex = 0;
            this.dataGridView1.SelectionChanged += new System.EventHandler(this.dataGridView1_SelectionChanged);
            // 
            // gbYiShi
            // 
            this.gbYiShi.BackColor = System.Drawing.Color.Transparent;
            this.gbYiShi.Controls.Add(this.dataGridView1);
            this.gbYiShi.Location = new System.Drawing.Point(5, 138);
            this.gbYiShi.Name = "gbYiShi";
            this.gbYiShi.Size = new System.Drawing.Size(369, 309);
            this.gbYiShi.TabIndex = 1;
            this.gbYiShi.TabStop = false;
            this.gbYiShi.Text = "当前有几条医师记录";
            // 
            // gbXinXi
            // 
            this.gbXinXi.BackColor = System.Drawing.Color.Transparent;
            this.gbXinXi.Controls.Add(this.cbKeShi);
            this.gbXinXi.Controls.Add(this.cbZhiCheng);
            this.gbXinXi.Controls.Add(this.cbXueLi);
            this.gbXinXi.Controls.Add(this.cbSex);
            this.gbXinXi.Controls.Add(this.txtAge);
            this.gbXinXi.Controls.Add(this.txtName);
            this.gbXinXi.Controls.Add(this.lblKeShi);
            this.gbXinXi.Controls.Add(this.lblZhiCheng);
            this.gbXinXi.Controls.Add(this.lblXueLi);
            this.gbXinXi.Controls.Add(this.lblAge);
            this.gbXinXi.Controls.Add(this.lblSex);
            this.gbXinXi.Controls.Add(this.lblName);
            this.gbXinXi.Location = new System.Drawing.Point(395, 138);
            this.gbXinXi.Name = "gbXinXi";
            this.gbXinXi.Size = new System.Drawing.Size(286, 251);
            this.gbXinXi.TabIndex = 2;
            this.gbXinXi.TabStop = false;
            this.gbXinXi.Text = "信息设置";
            // 
            // cbKeShi
            // 
            this.cbKeShi.FormattingEnabled = true;
            this.cbKeShi.Location = new System.Drawing.Point(124, 193);
            this.cbKeShi.Name = "cbKeShi";
            this.cbKeShi.Size = new System.Drawing.Size(139, 20);
            this.cbKeShi.TabIndex = 11;
            // 
            // cbZhiCheng
            // 
            this.cbZhiCheng.FormattingEnabled = true;
            this.cbZhiCheng.Items.AddRange(new object[] {
            "专家",
            "教授"});
            this.cbZhiCheng.Location = new System.Drawing.Point(124, 159);
            this.cbZhiCheng.Name = "cbZhiCheng";
            this.cbZhiCheng.Size = new System.Drawing.Size(139, 20);
            this.cbZhiCheng.TabIndex = 10;
            // 
            // cbXueLi
            // 
            this.cbXueLi.FormattingEnabled = true;
            this.cbXueLi.Items.AddRange(new object[] {
            "高中",
            "大专",
            "本科",
            "研究生",
            "博士"});
            this.cbXueLi.Location = new System.Drawing.Point(124, 125);
            this.cbXueLi.Name = "cbXueLi";
            this.cbXueLi.Size = new System.Drawing.Size(139, 20);
            this.cbXueLi.TabIndex = 9;
            // 
            // cbSex
            // 
            this.cbSex.FormattingEnabled = true;
            this.cbSex.Location = new System.Drawing.Point(124, 57);
            this.cbSex.Name = "cbSex";
            this.cbSex.Size = new System.Drawing.Size(139, 20);
            this.cbSex.TabIndex = 8;
            // 
            // txtAge
            // 
            this.txtAge.Location = new System.Drawing.Point(124, 91);
            this.txtAge.Name = "txtAge";
            this.txtAge.Size = new System.Drawing.Size(139, 21);
            this.txtAge.TabIndex = 7;
            // 
            // txtName
            // 
            this.txtName.Location = new System.Drawing.Point(124, 23);
            this.txtName.Name = "txtName";
            this.txtName.Size = new System.Drawing.Size(139, 21);
            this.txtName.TabIndex = 6;
            // 
            // lblKeShi
            // 
            this.lblKeShi.AutoSize = true;
            this.lblKeShi.Location = new System.Drawing.Point(20, 196);
            this.lblKeShi.Name = "lblKeShi";
            this.lblKeShi.Size = new System.Drawing.Size(65, 12);
            this.lblKeShi.TabIndex = 5;
            this.lblKeShi.Text = "所在科室:";
            // 
            // lblZhiCheng
            // 
            this.lblZhiCheng.AutoSize = true;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?