示例#1
0
文件: MainForm.cs 项目: xeliven/PDDB
        private void LoadPjtType()
        {
            using (Entities context = new Entities())
            {
                var query = from q in context.ProjectType select q;
                foreach (var q in query)
                {
                    //建立容器
                    SideNavPanel snp = new SideNavPanel();
                    snp.Dock = System.Windows.Forms.DockStyle.Fill;
                    //内部列表
                    ListBoxAdv listbox = new ListBoxAdv();
                    listbox.Dock             = DockStyle.Fill;
                    listbox.AutoScroll       = true;
                    listbox.ItemDoubleClick += Listbox_ItemDoubleClick;

                    var pjtlistquery = from p in context.Project where p.projettype == q.projtype select p;
                    listbox.DisplayMember = "projectname";
                    listbox.DataSource    = pjtlistquery.ToList();
                    snp.Controls.Add(listbox);
                    _ProjListAdvDic.Add(q.projtype, listbox);

                    //建立边栏按钮
                    SideNavItem sin = new SideNavItem();
                    sin.Checked = false;
                    sin.Panel   = snp;
                    sin.Text    = q.projtype;
                    sideNav1.Controls.Add(snp);
                    sideNav1.Items.Add(sin);
                }
            }
        }
示例#2
0
            public SearchReplaceResultPage(ITextView textControl)
            {
                this.TextControl = textControl;
                this.listBox     = new ListBoxAdv(textControl);

                this.listBox.Dock = DockStyle.Fill;
                Controls.Add(this.listBox);
            }
示例#3
0
文件: apprun.cs 项目: skyclub66/HMI
 private void xuanzhonglist(ListBoxAdv list1, Label label)
 {
     try
     {
         if (list1 != null && list1.Items.Count > 0 && list1.VScrollBar != null)
         {
             list1.AutoScrollPosition = new Point(0, list1.VScrollBar.Maximum - list1.VScrollBar.LargeChange + 1);
             list1.RefreshItems();
         }
         Application.DoEvents();
         Thread.Sleep(1);
         list1.SelectedIndex = list1.Items.Count - 1;
         label.Text          = list1.Items.Count.ToString();
     }
     catch
     {
     }
 }
示例#4
0
        public ModelsSelect ModelsStatus;//模型组合情况

        private void MaterialsForm_Load(object sender, EventArgs e)
        {
            if (this.lsb_MatrialsDB.Items.Count == 0)
            {
                this.lsb_MatrialsDB.Items.Add("氨气");
                this.lsb_MatrialsDB.Items.Add("臭氧");
                this.lsb_MatrialsDB.Items.Add("二氧化氮");
                this.lsb_MatrialsDB.Items.Add("二氧化硫");
                this.lsb_MatrialsDB.Items.Add("三氧化硫");
                this.lsb_MatrialsDB.Items.Add("一氧化碳");
                this.lsb_MatrialsDB.Items.Add("二氧化碳");
                this.lsb_MatrialsDB.Items.Add("硫化氢");
                this.lsb_MatrialsDB.Items.Add("氯气");

                if (GlobleVariable.modelForm.species == Species.OFF)
                {
                    this.lsb_MatrialsDB.Items.Add("水");
                    this.lsb_MatrialsDB.Items.Add("氧气");
                    this.lsb_MatrialsDB.Items.Add("氮气");
                }

                this.lsb_MatrialsFluid.Items.Add("空气");
                listBox_MatrialsFluid = this.lsb_MatrialsFluid;

                this.lsb_Species.Items.Add("水");
                this.lsb_Species.Items.Add("氧气");
                this.lsb_Species.Items.Add("氮气");
            }


            sb_Species    = new StringBuilder();     //存储组分材料选择的指令
            matrialsIndex = new List <string>();     //存储可用(计算)材料的索引值
            action        = new Action(SpeciesIsOn); //绑定委托

            this.lb_help.Text = "帮助:\r\n" + HelpDescriptions.Materials;

            ListBox_Species = this.lsb_Species;
        }
示例#5
0
文件: MainForm.cs 项目: xeliven/PDDB
        private void Listbox_ItemDoubleClick(object sender, MouseEventArgs e)
        {
            sideNav2.Items.Clear();
            _DocListAdvDic.Clear();
            BaseItem bc = sender as BaseItem;

            using (Entities context = new Entities())
            {
                var query = from q in context.Document where q.projname == bc.Text group q by q.doctypename into g select new { type = g.Key, doc = g };
                foreach (var q in query)
                {
                    //建立容器
                    SideNavPanel snp = new SideNavPanel();
                    snp.Dock = System.Windows.Forms.DockStyle.Fill;
                    //内部列表
                    ListBoxAdv listbox = new ListBoxAdv();
                    listbox.Dock             = DockStyle.Fill;
                    listbox.AutoScroll       = true;
                    listbox.ItemDoubleClick += DocList_ItemDounleChick;
                    listbox.ItemClick       += Listbox_ItemCheck;
                    var pjtlistquery = from p in context.Document where p.doctypename == q.type select p;
                    listbox.DisplayMember = "docname";
                    listbox.DataSource    = pjtlistquery.ToList();
                    snp.Controls.Add(listbox);
                    _DocListAdvDic.Add(q.type, listbox);

                    //建立边栏按钮
                    SideNavItem sin = new SideNavItem();
                    sin.Checked = false;
                    sin.Panel   = snp;
                    sin.Text    = q.type;
                    sideNav2.Controls.Add(snp);
                    sideNav2.Items.Add(sin);
                }
            }
            sideNav2.Refresh();
        }
 private void InitializeComponent()
 {
     this.labelX1 = new LabelX();
     this.labelX2 = new LabelX();
     this.pbAuthCode = new System.Windows.Forms.PictureBox();
     this.tbOrderAuthCode = new TextBoxX();
     this.labelX3 = new LabelX();
     this.labelX4 = new LabelX();
     this.labelX5 = new LabelX();
     this.labelX6 = new LabelX();
     this.lbxRegTime = new ListBoxAdv();
     this.lbDoctorName = new LabelX();
     this.lbHospital = new LabelX();
     this.lbUserName = new LabelX();
     this.lbPhone = new LabelX();
     this.lbCardId = new LabelX();
     this.lbFee = new LabelX();
     this.labelX7 = new LabelX();
     this.lbVisitTime = new LabelX();
     this.lbMessage = new LabelX();
     this.labelX8 = new LabelX();
     ((System.ComponentModel.ISupportInitialize)this.pbAuthCode).BeginInit();
     base.SuspendLayout();
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.BackgroundStyle.CornerType = eCornerType.Square;
     this.labelX1.ForeColor = System.Drawing.Color.Black;
     this.labelX1.Location = new System.Drawing.Point(36, 69);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.Style = eDotNetBarStyle.StyleManagerControlled;
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "就诊人:";
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     this.labelX2.BackgroundStyle.CornerType = eCornerType.Square;
     this.labelX2.ForeColor = System.Drawing.Color.Black;
     this.labelX2.Location = new System.Drawing.Point(28, 399);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.Style = eDotNetBarStyle.StyleManagerControlled;
     this.labelX2.TabIndex = 3;
     this.labelX2.Text = "验证码:";
     this.pbAuthCode.BackColor = System.Drawing.Color.FromArgb(254, 254, 254);
     this.pbAuthCode.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.pbAuthCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pbAuthCode.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pbAuthCode.ForeColor = System.Drawing.Color.Black;
     this.pbAuthCode.Location = new System.Drawing.Point(191, 380);
     this.pbAuthCode.Name = "pbAuthCode";
     this.pbAuthCode.Size = new System.Drawing.Size(142, 53);
     this.pbAuthCode.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbAuthCode.TabIndex = 4;
     this.pbAuthCode.TabStop = false;
     this.pbAuthCode.Click += new System.EventHandler(this.pbAuthCode_Click);
     this.tbOrderAuthCode.BackColor = System.Drawing.Color.White;
     this.tbOrderAuthCode.Border.Class = "TextBoxBorder";
     this.tbOrderAuthCode.Border.CornerType = eCornerType.Square;
     this.tbOrderAuthCode.DisabledBackColor = System.Drawing.Color.White;
     this.tbOrderAuthCode.ForeColor = System.Drawing.Color.Black;
     this.tbOrderAuthCode.Location = new System.Drawing.Point(92, 398);
     this.tbOrderAuthCode.Name = "tbOrderAuthCode";
     this.tbOrderAuthCode.PreventEnterBeep = true;
     this.tbOrderAuthCode.Size = new System.Drawing.Size(93, 23);
     this.tbOrderAuthCode.TabIndex = 5;
     this.tbOrderAuthCode.TextChanged += new System.EventHandler(this.tbOrderAuthCode_TextChanged);
     this.tbOrderAuthCode.Enter += new System.EventHandler(this.tbOrderAuthCode_Enter);
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     this.labelX3.BackgroundStyle.CornerType = eCornerType.Square;
     this.labelX3.ForeColor = System.Drawing.Color.Black;
     this.labelX3.Location = new System.Drawing.Point(321, 69);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(75, 23);
     this.labelX3.Style = eDotNetBarStyle.StyleManagerControlled;
     this.labelX3.TabIndex = 6;
     this.labelX3.Text = "证件号:";
     this.labelX4.BackColor = System.Drawing.Color.Transparent;
     this.labelX4.BackgroundStyle.CornerType = eCornerType.Square;
     this.labelX4.ForeColor = System.Drawing.Color.Black;
     this.labelX4.Location = new System.Drawing.Point(27, 98);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(84, 23);
     this.labelX4.Style = eDotNetBarStyle.StyleManagerControlled;
     this.labelX4.TabIndex = 7;
     this.labelX4.Text = "联系电话:";
     this.labelX5.BackColor = System.Drawing.Color.Transparent;
     this.labelX5.BackgroundStyle.CornerType = eCornerType.Square;
     this.labelX5.ForeColor = System.Drawing.Color.Black;
     this.labelX5.Location = new System.Drawing.Point(323, 98);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(72, 23);
     this.labelX5.Style = eDotNetBarStyle.StyleManagerControlled;
     this.labelX5.TabIndex = 8;
     this.labelX5.Text = "挂号费:";
     this.labelX6.BackColor = System.Drawing.Color.Transparent;
     this.labelX6.BackgroundStyle.CornerType = eCornerType.Square;
     this.labelX6.ForeColor = System.Drawing.Color.Black;
     this.labelX6.Location = new System.Drawing.Point(36, 16);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(84, 23);
     this.labelX6.Style = eDotNetBarStyle.StyleManagerControlled;
     this.labelX6.TabIndex = 9;
     this.labelX6.Text = "预约医生:";
     this.lbxRegTime.AutoScroll = true;
     this.lbxRegTime.BackColor = System.Drawing.Color.FromArgb(254, 254, 254);
     this.lbxRegTime.BackgroundStyle.Class = "ListBoxAdv";
     this.lbxRegTime.BackgroundStyle.CornerType = eCornerType.Square;
     this.lbxRegTime.ContainerControlProcessDialogKey = true;
     this.lbxRegTime.DragDropSupport = true;
     this.lbxRegTime.ForeColor = System.Drawing.Color.Black;
     this.lbxRegTime.Location = new System.Drawing.Point(24, 174);
     this.lbxRegTime.Name = "lbxRegTime";
     this.lbxRegTime.Size = new System.Drawing.Size(581, 200);
     this.lbxRegTime.Style = eDotNetBarStyle.StyleManagerControlled;
     this.lbxRegTime.TabIndex = 11;
     this.lbxRegTime.Text = "listBoxAdv1";
     this.lbxRegTime.SelectedIndexChanged += new System.EventHandler(this.lbxRegTime_SelectedIndexChanged);
     this.lbDoctorName.BackColor = System.Drawing.Color.Transparent;
     this.lbDoctorName.BackgroundStyle.CornerType = eCornerType.Square;
     this.lbDoctorName.ForeColor = System.Drawing.Color.Black;
     this.lbDoctorName.Location = new System.Drawing.Point(111, 16);
     this.lbDoctorName.Name = "lbDoctorName";
     this.lbDoctorName.Size = new System.Drawing.Size(127, 23);
     this.lbDoctorName.Style = eDotNetBarStyle.StyleManagerControlled;
     this.lbDoctorName.TabIndex = 12;
     this.lbHospital.BackColor = System.Drawing.Color.Transparent;
     this.lbHospital.BackgroundStyle.CornerType = eCornerType.Square;
     this.lbHospital.ForeColor = System.Drawing.Color.Black;
     this.lbHospital.Location = new System.Drawing.Point(111, 42);
     this.lbHospital.Name = "lbHospital";
     this.lbHospital.Size = new System.Drawing.Size(464, 23);
     this.lbHospital.Style = eDotNetBarStyle.StyleManagerControlled;
     this.lbHospital.TabIndex = 13;
     this.lbUserName.BackColor = System.Drawing.Color.Transparent;
     this.lbUserName.BackgroundStyle.CornerType = eCornerType.Square;
     this.lbUserName.ForeColor = System.Drawing.Color.Black;
     this.lbUserName.Location = new System.Drawing.Point(111, 69);
     this.lbUserName.Name = "lbUserName";
     this.lbUserName.Size = new System.Drawing.Size(127, 23);
     this.lbUserName.Style = eDotNetBarStyle.StyleManagerControlled;
     this.lbUserName.TabIndex = 14;
     this.lbPhone.BackColor = System.Drawing.Color.Transparent;
     this.lbPhone.BackgroundStyle.CornerType = eCornerType.Square;
     this.lbPhone.ForeColor = System.Drawing.Color.Black;
     this.lbPhone.Location = new System.Drawing.Point(111, 98);
     this.lbPhone.Name = "lbPhone";
     this.lbPhone.Size = new System.Drawing.Size(127, 23);
     this.lbPhone.Style = eDotNetBarStyle.StyleManagerControlled;
     this.lbPhone.TabIndex = 15;
     this.lbCardId.BackColor = System.Drawing.Color.Transparent;
     this.lbCardId.BackgroundStyle.CornerType = eCornerType.Square;
     this.lbCardId.ForeColor = System.Drawing.Color.Black;
     this.lbCardId.Location = new System.Drawing.Point(384, 69);
     this.lbCardId.Name = "lbCardId";
     this.lbCardId.Size = new System.Drawing.Size(191, 23);
     this.lbCardId.Style = eDotNetBarStyle.StyleManagerControlled;
     this.lbCardId.TabIndex = 16;
     this.lbFee.BackColor = System.Drawing.Color.Transparent;
     this.lbFee.BackgroundStyle.CornerType = eCornerType.Square;
     this.lbFee.Font = new System.Drawing.Font("Microsoft YaHei", 10.5f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 134);
     this.lbFee.ForeColor = System.Drawing.Color.Black;
     this.lbFee.Location = new System.Drawing.Point(384, 98);
     this.lbFee.Name = "lbFee";
     this.lbFee.Size = new System.Drawing.Size(127, 23);
     this.lbFee.Style = eDotNetBarStyle.StyleManagerControlled;
     this.lbFee.TabIndex = 17;
     this.labelX7.BackColor = System.Drawing.Color.Transparent;
     this.labelX7.BackgroundStyle.CornerType = eCornerType.Square;
     this.labelX7.ForeColor = System.Drawing.Color.Black;
     this.labelX7.Location = new System.Drawing.Point(27, 127);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(84, 23);
     this.labelX7.Style = eDotNetBarStyle.StyleManagerControlled;
     this.labelX7.TabIndex = 18;
     this.labelX7.Text = "就诊时间:";
     this.lbVisitTime.BackColor = System.Drawing.Color.Transparent;
     this.lbVisitTime.BackgroundStyle.CornerType = eCornerType.Square;
     this.lbVisitTime.ForeColor = System.Drawing.Color.Black;
     this.lbVisitTime.Location = new System.Drawing.Point(111, 126);
     this.lbVisitTime.Name = "lbVisitTime";
     this.lbVisitTime.Size = new System.Drawing.Size(194, 23);
     this.lbVisitTime.Style = eDotNetBarStyle.StyleManagerControlled;
     this.lbVisitTime.TabIndex = 19;
     this.lbMessage.BackColor = System.Drawing.Color.Transparent;
     this.lbMessage.BackgroundStyle.CornerType = eCornerType.Square;
     this.lbMessage.ForeColor = System.Drawing.Color.Black;
     this.lbMessage.Location = new System.Drawing.Point(339, 389);
     this.lbMessage.Name = "lbMessage";
     this.lbMessage.Size = new System.Drawing.Size(274, 35);
     this.lbMessage.Style = eDotNetBarStyle.StyleManagerControlled;
     this.lbMessage.TabIndex = 20;
     this.labelX8.BackgroundStyle.CornerType = eCornerType.Square;
     this.labelX8.Location = new System.Drawing.Point(25, 151);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(280, 23);
     this.labelX8.Style = eDotNetBarStyle.StyleManagerControlled;
     this.labelX8.TabIndex = 22;
     this.labelX8.Text = "<font color=\"Red\">(请在以下时间列表中选择后填写验证码)</font>";
     base.AutoScaleDimensions = new System.Drawing.SizeF(7f, 14f);
     base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     base.ClientSize = new System.Drawing.Size(625, 438);
     base.Controls.Add(this.labelX8);
     base.Controls.Add(this.lbMessage);
     base.Controls.Add(this.lbVisitTime);
     base.Controls.Add(this.labelX7);
     base.Controls.Add(this.lbFee);
     base.Controls.Add(this.lbCardId);
     base.Controls.Add(this.lbPhone);
     base.Controls.Add(this.lbUserName);
     base.Controls.Add(this.lbHospital);
     base.Controls.Add(this.lbDoctorName);
     base.Controls.Add(this.lbxRegTime);
     base.Controls.Add(this.labelX6);
     base.Controls.Add(this.labelX5);
     base.Controls.Add(this.labelX4);
     base.Controls.Add(this.labelX3);
     base.Controls.Add(this.tbOrderAuthCode);
     base.Controls.Add(this.pbAuthCode);
     base.Controls.Add(this.labelX2);
     base.Controls.Add(this.labelX1);
     this.DoubleBuffered = true;
     this.Font = new System.Drawing.Font("SimSun", 10.5f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
     base.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     base.MaximizeBox = false;
     base.MinimizeBox = false;
     base.Name = "OrderForm";
     base.ShowIcon = false;
     base.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "订单信息";
     base.Load += new System.EventHandler(this.OrderForm_Load);
     ((System.ComponentModel.ISupportInitialize)this.pbAuthCode).EndInit();
     base.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.labelX1         = new LabelX();
     this.labelX2         = new LabelX();
     this.pbAuthCode      = new System.Windows.Forms.PictureBox();
     this.tbOrderAuthCode = new TextBoxX();
     this.labelX3         = new LabelX();
     this.labelX4         = new LabelX();
     this.labelX5         = new LabelX();
     this.labelX6         = new LabelX();
     this.lbxRegTime      = new ListBoxAdv();
     this.lbDoctorName    = new LabelX();
     this.lbHospital      = new LabelX();
     this.lbUserName      = new LabelX();
     this.lbPhone         = new LabelX();
     this.lbCardId        = new LabelX();
     this.lbFee           = new LabelX();
     this.labelX7         = new LabelX();
     this.lbVisitTime     = new LabelX();
     this.lbMessage       = new LabelX();
     this.labelX8         = new LabelX();
     ((System.ComponentModel.ISupportInitialize) this.pbAuthCode).BeginInit();
     base.SuspendLayout();
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     this.labelX1.BackgroundStyle.CornerType = eCornerType.Square;
     this.labelX1.ForeColor = System.Drawing.Color.Black;
     this.labelX1.Location  = new System.Drawing.Point(36, 69);
     this.labelX1.Name      = "labelX1";
     this.labelX1.Size      = new System.Drawing.Size(75, 23);
     this.labelX1.Style     = eDotNetBarStyle.StyleManagerControlled;
     this.labelX1.TabIndex  = 0;
     this.labelX1.Text      = "就诊人:";
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     this.labelX2.BackgroundStyle.CornerType = eCornerType.Square;
     this.labelX2.ForeColor                           = System.Drawing.Color.Black;
     this.labelX2.Location                            = new System.Drawing.Point(28, 399);
     this.labelX2.Name                                = "labelX2";
     this.labelX2.Size                                = new System.Drawing.Size(75, 23);
     this.labelX2.Style                               = eDotNetBarStyle.StyleManagerControlled;
     this.labelX2.TabIndex                            = 3;
     this.labelX2.Text                                = "验证码:";
     this.pbAuthCode.BackColor                        = System.Drawing.Color.FromArgb(254, 254, 254);
     this.pbAuthCode.BackgroundImageLayout            = System.Windows.Forms.ImageLayout.Stretch;
     this.pbAuthCode.BorderStyle                      = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pbAuthCode.Cursor                           = System.Windows.Forms.Cursors.Hand;
     this.pbAuthCode.ForeColor                        = System.Drawing.Color.Black;
     this.pbAuthCode.Location                         = new System.Drawing.Point(191, 380);
     this.pbAuthCode.Name                             = "pbAuthCode";
     this.pbAuthCode.Size                             = new System.Drawing.Size(142, 53);
     this.pbAuthCode.SizeMode                         = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbAuthCode.TabIndex                         = 4;
     this.pbAuthCode.TabStop                          = false;
     this.pbAuthCode.Click                           += new System.EventHandler(this.pbAuthCode_Click);
     this.tbOrderAuthCode.BackColor                   = System.Drawing.Color.White;
     this.tbOrderAuthCode.Border.Class                = "TextBoxBorder";
     this.tbOrderAuthCode.Border.CornerType           = eCornerType.Square;
     this.tbOrderAuthCode.DisabledBackColor           = System.Drawing.Color.White;
     this.tbOrderAuthCode.ForeColor                   = System.Drawing.Color.Black;
     this.tbOrderAuthCode.Location                    = new System.Drawing.Point(92, 398);
     this.tbOrderAuthCode.Name                        = "tbOrderAuthCode";
     this.tbOrderAuthCode.PreventEnterBeep            = true;
     this.tbOrderAuthCode.Size                        = new System.Drawing.Size(93, 23);
     this.tbOrderAuthCode.TabIndex                    = 5;
     this.tbOrderAuthCode.TextChanged                += new System.EventHandler(this.tbOrderAuthCode_TextChanged);
     this.labelX3.BackColor                           = System.Drawing.Color.Transparent;
     this.labelX3.BackgroundStyle.CornerType          = eCornerType.Square;
     this.labelX3.ForeColor                           = System.Drawing.Color.Black;
     this.labelX3.Location                            = new System.Drawing.Point(321, 69);
     this.labelX3.Name                                = "labelX3";
     this.labelX3.Size                                = new System.Drawing.Size(75, 23);
     this.labelX3.Style                               = eDotNetBarStyle.StyleManagerControlled;
     this.labelX3.TabIndex                            = 6;
     this.labelX3.Text                                = "证件号:";
     this.labelX4.BackColor                           = System.Drawing.Color.Transparent;
     this.labelX4.BackgroundStyle.CornerType          = eCornerType.Square;
     this.labelX4.ForeColor                           = System.Drawing.Color.Black;
     this.labelX4.Location                            = new System.Drawing.Point(27, 98);
     this.labelX4.Name                                = "labelX4";
     this.labelX4.Size                                = new System.Drawing.Size(84, 23);
     this.labelX4.Style                               = eDotNetBarStyle.StyleManagerControlled;
     this.labelX4.TabIndex                            = 7;
     this.labelX4.Text                                = "联系电话:";
     this.labelX5.BackColor                           = System.Drawing.Color.Transparent;
     this.labelX5.BackgroundStyle.CornerType          = eCornerType.Square;
     this.labelX5.ForeColor                           = System.Drawing.Color.Black;
     this.labelX5.Location                            = new System.Drawing.Point(323, 98);
     this.labelX5.Name                                = "labelX5";
     this.labelX5.Size                                = new System.Drawing.Size(72, 23);
     this.labelX5.Style                               = eDotNetBarStyle.StyleManagerControlled;
     this.labelX5.TabIndex                            = 8;
     this.labelX5.Text                                = "挂号费:";
     this.labelX6.BackColor                           = System.Drawing.Color.Transparent;
     this.labelX6.BackgroundStyle.CornerType          = eCornerType.Square;
     this.labelX6.ForeColor                           = System.Drawing.Color.Black;
     this.labelX6.Location                            = new System.Drawing.Point(36, 16);
     this.labelX6.Name                                = "labelX6";
     this.labelX6.Size                                = new System.Drawing.Size(84, 23);
     this.labelX6.Style                               = eDotNetBarStyle.StyleManagerControlled;
     this.labelX6.TabIndex                            = 9;
     this.labelX6.Text                                = "预约医生:";
     this.lbxRegTime.AutoScroll                       = true;
     this.lbxRegTime.BackColor                        = System.Drawing.Color.FromArgb(254, 254, 254);
     this.lbxRegTime.BackgroundStyle.Class            = "ListBoxAdv";
     this.lbxRegTime.BackgroundStyle.CornerType       = eCornerType.Square;
     this.lbxRegTime.ContainerControlProcessDialogKey = true;
     this.lbxRegTime.DragDropSupport                  = true;
     this.lbxRegTime.ForeColor                        = System.Drawing.Color.Black;
     this.lbxRegTime.Location                         = new System.Drawing.Point(24, 174);
     this.lbxRegTime.Name                             = "lbxRegTime";
     this.lbxRegTime.Size                             = new System.Drawing.Size(581, 200);
     this.lbxRegTime.Style                            = eDotNetBarStyle.StyleManagerControlled;
     this.lbxRegTime.TabIndex                         = 11;
     this.lbxRegTime.Text                             = "listBoxAdv1";
     this.lbxRegTime.SelectedIndexChanged            += new System.EventHandler(this.lbxRegTime_SelectedIndexChanged);
     this.lbDoctorName.BackColor                      = System.Drawing.Color.Transparent;
     this.lbDoctorName.BackgroundStyle.CornerType     = eCornerType.Square;
     this.lbDoctorName.ForeColor                      = System.Drawing.Color.Black;
     this.lbDoctorName.Location                       = new System.Drawing.Point(111, 16);
     this.lbDoctorName.Name                           = "lbDoctorName";
     this.lbDoctorName.Size                           = new System.Drawing.Size(127, 23);
     this.lbDoctorName.Style                          = eDotNetBarStyle.StyleManagerControlled;
     this.lbDoctorName.TabIndex                       = 12;
     this.lbHospital.BackColor                        = System.Drawing.Color.Transparent;
     this.lbHospital.BackgroundStyle.CornerType       = eCornerType.Square;
     this.lbHospital.ForeColor                        = System.Drawing.Color.Black;
     this.lbHospital.Location                         = new System.Drawing.Point(111, 42);
     this.lbHospital.Name                             = "lbHospital";
     this.lbHospital.Size                             = new System.Drawing.Size(464, 23);
     this.lbHospital.Style                            = eDotNetBarStyle.StyleManagerControlled;
     this.lbHospital.TabIndex                         = 13;
     this.lbUserName.BackColor                        = System.Drawing.Color.Transparent;
     this.lbUserName.BackgroundStyle.CornerType       = eCornerType.Square;
     this.lbUserName.ForeColor                        = System.Drawing.Color.Black;
     this.lbUserName.Location                         = new System.Drawing.Point(111, 69);
     this.lbUserName.Name                             = "lbUserName";
     this.lbUserName.Size                             = new System.Drawing.Size(127, 23);
     this.lbUserName.Style                            = eDotNetBarStyle.StyleManagerControlled;
     this.lbUserName.TabIndex                         = 14;
     this.lbPhone.BackColor                           = System.Drawing.Color.Transparent;
     this.lbPhone.BackgroundStyle.CornerType          = eCornerType.Square;
     this.lbPhone.ForeColor                           = System.Drawing.Color.Black;
     this.lbPhone.Location                            = new System.Drawing.Point(111, 98);
     this.lbPhone.Name                                = "lbPhone";
     this.lbPhone.Size                                = new System.Drawing.Size(127, 23);
     this.lbPhone.Style                               = eDotNetBarStyle.StyleManagerControlled;
     this.lbPhone.TabIndex                            = 15;
     this.lbCardId.BackColor                          = System.Drawing.Color.Transparent;
     this.lbCardId.BackgroundStyle.CornerType         = eCornerType.Square;
     this.lbCardId.ForeColor                          = System.Drawing.Color.Black;
     this.lbCardId.Location                           = new System.Drawing.Point(384, 69);
     this.lbCardId.Name                               = "lbCardId";
     this.lbCardId.Size                               = new System.Drawing.Size(191, 23);
     this.lbCardId.Style                              = eDotNetBarStyle.StyleManagerControlled;
     this.lbCardId.TabIndex                           = 16;
     this.lbFee.BackColor                             = System.Drawing.Color.Transparent;
     this.lbFee.BackgroundStyle.CornerType            = eCornerType.Square;
     this.lbFee.Font        = new System.Drawing.Font("Microsoft YaHei", 10.5f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 134);
     this.lbFee.ForeColor   = System.Drawing.Color.Black;
     this.lbFee.Location    = new System.Drawing.Point(384, 98);
     this.lbFee.Name        = "lbFee";
     this.lbFee.Size        = new System.Drawing.Size(127, 23);
     this.lbFee.Style       = eDotNetBarStyle.StyleManagerControlled;
     this.lbFee.TabIndex    = 17;
     this.labelX7.BackColor = System.Drawing.Color.Transparent;
     this.labelX7.BackgroundStyle.CornerType = eCornerType.Square;
     this.labelX7.ForeColor     = System.Drawing.Color.Black;
     this.labelX7.Location      = new System.Drawing.Point(27, 127);
     this.labelX7.Name          = "labelX7";
     this.labelX7.Size          = new System.Drawing.Size(84, 23);
     this.labelX7.Style         = eDotNetBarStyle.StyleManagerControlled;
     this.labelX7.TabIndex      = 18;
     this.labelX7.Text          = "就诊时间:";
     this.lbVisitTime.BackColor = System.Drawing.Color.Transparent;
     this.lbVisitTime.BackgroundStyle.CornerType = eCornerType.Square;
     this.lbVisitTime.ForeColor = System.Drawing.Color.Black;
     this.lbVisitTime.Location  = new System.Drawing.Point(111, 126);
     this.lbVisitTime.Name      = "lbVisitTime";
     this.lbVisitTime.Size      = new System.Drawing.Size(194, 23);
     this.lbVisitTime.Style     = eDotNetBarStyle.StyleManagerControlled;
     this.lbVisitTime.TabIndex  = 19;
     this.lbMessage.BackColor   = System.Drawing.Color.Transparent;
     this.lbMessage.BackgroundStyle.CornerType = eCornerType.Square;
     this.lbMessage.ForeColor = System.Drawing.Color.Black;
     this.lbMessage.Location  = new System.Drawing.Point(339, 389);
     this.lbMessage.Name      = "lbMessage";
     this.lbMessage.Size      = new System.Drawing.Size(274, 35);
     this.lbMessage.Style     = eDotNetBarStyle.StyleManagerControlled;
     this.lbMessage.TabIndex  = 20;
     this.labelX8.BackgroundStyle.CornerType = eCornerType.Square;
     this.labelX8.Location    = new System.Drawing.Point(25, 151);
     this.labelX8.Name        = "labelX8";
     this.labelX8.Size        = new System.Drawing.Size(280, 23);
     this.labelX8.Style       = eDotNetBarStyle.StyleManagerControlled;
     this.labelX8.TabIndex    = 22;
     this.labelX8.Text        = "<font color=\"Red\">(请在以下时间列表中选择后填写验证码)</font>";
     base.AutoScaleDimensions = new System.Drawing.SizeF(7f, 14f);
     base.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     base.ClientSize          = new System.Drawing.Size(625, 438);
     base.Controls.Add(this.labelX8);
     base.Controls.Add(this.lbMessage);
     base.Controls.Add(this.lbVisitTime);
     base.Controls.Add(this.labelX7);
     base.Controls.Add(this.lbFee);
     base.Controls.Add(this.lbCardId);
     base.Controls.Add(this.lbPhone);
     base.Controls.Add(this.lbUserName);
     base.Controls.Add(this.lbHospital);
     base.Controls.Add(this.lbDoctorName);
     base.Controls.Add(this.lbxRegTime);
     base.Controls.Add(this.labelX6);
     base.Controls.Add(this.labelX5);
     base.Controls.Add(this.labelX4);
     base.Controls.Add(this.labelX3);
     base.Controls.Add(this.tbOrderAuthCode);
     base.Controls.Add(this.pbAuthCode);
     base.Controls.Add(this.labelX2);
     base.Controls.Add(this.labelX1);
     this.DoubleBuffered  = true;
     this.Font            = new System.Drawing.Font("SimSun", 10.5f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 134);
     base.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     base.MaximizeBox     = false;
     base.MinimizeBox     = false;
     base.Name            = "OrderForm";
     base.ShowIcon        = false;
     base.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "订单信息";
     base.Load           += new System.EventHandler(this.OrderForm_Load);
     ((System.ComponentModel.ISupportInitialize) this.pbAuthCode).EndInit();
     base.ResumeLayout(false);
 }