PatientSearchPopup.Designer.cs 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. namespace CLIP.eForm.Consent.Dfh.UI
  2. {
  3. partial class PatientSearchPopup
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.groupBox1 = new System.Windows.Forms.GroupBox();
  29. this.buttonPatientSelect = new System.Windows.Forms.Button();
  30. this.textboxSearchText = new System.Windows.Forms.TextBox();
  31. this.comboSearchType = new System.Windows.Forms.ComboBox();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.dataGridViewPatientSelectResult = new System.Windows.Forms.DataGridView();
  34. this.buttonOK = new System.Windows.Forms.Button();
  35. this.buttonCancel = new System.Windows.Forms.Button();
  36. this.groupBox1.SuspendLayout();
  37. ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPatientSelectResult)).BeginInit();
  38. this.SuspendLayout();
  39. //
  40. // groupBox1
  41. //
  42. this.groupBox1.Controls.Add(this.buttonPatientSelect);
  43. this.groupBox1.Controls.Add(this.textboxSearchText);
  44. this.groupBox1.Controls.Add(this.comboSearchType);
  45. this.groupBox1.Controls.Add(this.label1);
  46. this.groupBox1.Location = new System.Drawing.Point(7, 8);
  47. this.groupBox1.Name = "groupBox1";
  48. this.groupBox1.Size = new System.Drawing.Size(564, 53);
  49. this.groupBox1.TabIndex = 0;
  50. this.groupBox1.TabStop = false;
  51. //
  52. // buttonPatientSelect
  53. //
  54. this.buttonPatientSelect.Location = new System.Drawing.Point(482, 17);
  55. this.buttonPatientSelect.Name = "buttonPatientSelect";
  56. this.buttonPatientSelect.Size = new System.Drawing.Size(64, 23);
  57. this.buttonPatientSelect.TabIndex = 0;
  58. this.buttonPatientSelect.Text = "조회";
  59. this.buttonPatientSelect.UseVisualStyleBackColor = true;
  60. this.buttonPatientSelect.Click += new System.EventHandler(this.buttonPatientSelect_Click);
  61. //
  62. // textboxSearchText
  63. //
  64. this.textboxSearchText.Location = new System.Drawing.Point(178, 19);
  65. this.textboxSearchText.Name = "textboxSearchText";
  66. this.textboxSearchText.Size = new System.Drawing.Size(150, 21);
  67. this.textboxSearchText.TabIndex = 2;
  68. this.textboxSearchText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textboxSearchText_KeyDown);
  69. //
  70. // comboSearchType
  71. //
  72. this.comboSearchType.FormattingEnabled = true;
  73. this.comboSearchType.Location = new System.Drawing.Point(77, 19);
  74. this.comboSearchType.Name = "comboSearchType";
  75. this.comboSearchType.Size = new System.Drawing.Size(95, 20);
  76. this.comboSearchType.TabIndex = 1;
  77. this.comboSearchType.SelectedIndexChanged += new System.EventHandler(this.comboSearchType_SelectedIndexChanged);
  78. //
  79. // label1
  80. //
  81. this.label1.AutoSize = true;
  82. this.label1.Location = new System.Drawing.Point(11, 23);
  83. this.label1.Name = "label1";
  84. this.label1.Size = new System.Drawing.Size(53, 12);
  85. this.label1.TabIndex = 0;
  86. this.label1.Text = "검색조건";
  87. //
  88. // dataGridViewPatientSelectResult
  89. //
  90. this.dataGridViewPatientSelectResult.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  91. this.dataGridViewPatientSelectResult.Location = new System.Drawing.Point(8, 67);
  92. this.dataGridViewPatientSelectResult.Name = "dataGridViewPatientSelectResult";
  93. this.dataGridViewPatientSelectResult.RowTemplate.Height = 23;
  94. this.dataGridViewPatientSelectResult.Size = new System.Drawing.Size(563, 315);
  95. this.dataGridViewPatientSelectResult.TabIndex = 1;
  96. //
  97. // buttonOK
  98. //
  99. this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  100. this.buttonOK.Location = new System.Drawing.Point(423, 389);
  101. this.buttonOK.Name = "buttonOK";
  102. this.buttonOK.Size = new System.Drawing.Size(71, 23);
  103. this.buttonOK.TabIndex = 2;
  104. this.buttonOK.Text = "확인";
  105. this.buttonOK.UseVisualStyleBackColor = true;
  106. //
  107. // buttonCancel
  108. //
  109. this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  110. this.buttonCancel.Location = new System.Drawing.Point(500, 388);
  111. this.buttonCancel.Name = "buttonCancel";
  112. this.buttonCancel.Size = new System.Drawing.Size(71, 23);
  113. this.buttonCancel.TabIndex = 3;
  114. this.buttonCancel.Text = "취소";
  115. this.buttonCancel.UseVisualStyleBackColor = true;
  116. //
  117. // PatientSearchPopup
  118. //
  119. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
  120. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  121. this.ClientSize = new System.Drawing.Size(579, 424);
  122. this.Controls.Add(this.buttonCancel);
  123. this.Controls.Add(this.buttonOK);
  124. this.Controls.Add(this.dataGridViewPatientSelectResult);
  125. this.Controls.Add(this.groupBox1);
  126. this.Name = "PatientSearchPopup";
  127. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  128. this.Text = "환자기초정보조회";
  129. this.Load += new System.EventHandler(this.PatientSearchPopup_Load);
  130. this.groupBox1.ResumeLayout(false);
  131. this.groupBox1.PerformLayout();
  132. ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPatientSelectResult)).EndInit();
  133. this.ResumeLayout(false);
  134. }
  135. #endregion
  136. private System.Windows.Forms.GroupBox groupBox1;
  137. private System.Windows.Forms.Button buttonPatientSelect;
  138. private System.Windows.Forms.TextBox textboxSearchText;
  139. private System.Windows.Forms.ComboBox comboSearchType;
  140. private System.Windows.Forms.Label label1;
  141. private System.Windows.Forms.DataGridView dataGridViewPatientSelectResult;
  142. private System.Windows.Forms.Button buttonOK;
  143. private System.Windows.Forms.Button buttonCancel;
  144. }
  145. }