namespace IndianHealthService.ClinicalScheduling { partial class DRadExamsSelect { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.lstExams = new System.Windows.Forms.ListBox(); this.tableOKCancel = new System.Windows.Forms.TableLayoutPanel(); this.btnOK = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); this.lblInfo = new System.Windows.Forms.Label(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.splitContainer2 = new System.Windows.Forms.SplitContainer(); this.chkPrint = new System.Windows.Forms.CheckBox(); this.tableOKCancel.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit(); this.splitContainer2.Panel1.SuspendLayout(); this.splitContainer2.Panel2.SuspendLayout(); this.splitContainer2.SuspendLayout(); this.SuspendLayout(); // // lstExams // this.lstExams.Dock = System.Windows.Forms.DockStyle.Fill; this.lstExams.FormattingEnabled = true; this.lstExams.Location = new System.Drawing.Point(0, 0); this.lstExams.Name = "lstExams"; this.lstExams.Size = new System.Drawing.Size(497, 237); this.lstExams.TabIndex = 0; this.lstExams.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lstExams_MouseDoubleClick); // // tableOKCancel // this.tableOKCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.tableOKCancel.ColumnCount = 2; this.tableOKCancel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.tableOKCancel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.tableOKCancel.Controls.Add(this.btnOK, 0, 0); this.tableOKCancel.Controls.Add(this.btnCancel, 1, 0); this.tableOKCancel.Location = new System.Drawing.Point(328, -1); this.tableOKCancel.Name = "tableOKCancel"; this.tableOKCancel.RowCount = 1; this.tableOKCancel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.tableOKCancel.Size = new System.Drawing.Size(166, 29); this.tableOKCancel.TabIndex = 1; // // btnOK // this.btnOK.Location = new System.Drawing.Point(3, 3); this.btnOK.Name = "btnOK"; this.btnOK.Size = new System.Drawing.Size(75, 23); this.btnOK.TabIndex = 0; this.btnOK.Text = "OK"; this.btnOK.UseVisualStyleBackColor = true; this.btnOK.Click += new System.EventHandler(this.btnOK_Click); // // btnCancel // this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.Location = new System.Drawing.Point(86, 3); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 23); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Cancel"; this.btnCancel.UseVisualStyleBackColor = true; // // lblInfo // this.lblInfo.Anchor = System.Windows.Forms.AnchorStyles.Left; this.lblInfo.AutoSize = true; this.lblInfo.Location = new System.Drawing.Point(4, 6); this.lblInfo.Name = "lblInfo"; this.lblInfo.Size = new System.Drawing.Size(245, 13); this.lblInfo.TabIndex = 2; this.lblInfo.Text = "Select an Exam from the exams listed to Schedule"; // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 0); this.splitContainer1.Name = "splitContainer1"; this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.lstExams); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.splitContainer2); this.splitContainer1.Size = new System.Drawing.Size(497, 302); this.splitContainer1.SplitterDistance = 237; this.splitContainer1.TabIndex = 3; // // splitContainer2 // this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer2.Location = new System.Drawing.Point(0, 0); this.splitContainer2.Name = "splitContainer2"; this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer2.Panel1 // this.splitContainer2.Panel1.Controls.Add(this.lblInfo); // // splitContainer2.Panel2 // this.splitContainer2.Panel2.Controls.Add(this.chkPrint); this.splitContainer2.Panel2.Controls.Add(this.tableOKCancel); this.splitContainer2.Size = new System.Drawing.Size(497, 61); this.splitContainer2.SplitterDistance = 25; this.splitContainer2.TabIndex = 3; // // chkPrint // this.chkPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.chkPrint.AutoSize = true; this.chkPrint.Location = new System.Drawing.Point(3, 11); this.chkPrint.Name = "chkPrint"; this.chkPrint.Size = new System.Drawing.Size(131, 17); this.chkPrint.TabIndex = 2; this.chkPrint.Text = "Print Appointment Slip"; this.chkPrint.UseVisualStyleBackColor = true; this.chkPrint.CheckedChanged += new System.EventHandler(this.chkPrint_CheckedChanged); // // DRadExamsSelect // this.AcceptButton = this.btnOK; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.btnCancel; this.ClientSize = new System.Drawing.Size(497, 302); this.ControlBox = false; this.Controls.Add(this.splitContainer1); this.MinimumSize = new System.Drawing.Size(500, 250); this.Name = "DRadExamsSelect"; this.Text = "Select an Exam"; this.tableOKCancel.ResumeLayout(false); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); this.splitContainer2.Panel1.ResumeLayout(false); this.splitContainer2.Panel1.PerformLayout(); this.splitContainer2.Panel2.ResumeLayout(false); this.splitContainer2.Panel2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit(); this.splitContainer2.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.ListBox lstExams; private System.Windows.Forms.TableLayoutPanel tableOKCancel; private System.Windows.Forms.Button btnOK; private System.Windows.Forms.Button btnCancel; private System.Windows.Forms.Label lblInfo; private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.SplitContainer splitContainer2; private System.Windows.Forms.CheckBox chkPrint; } }