DoctorForm.Designer.cs 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. namespace FietsClient
  2. {
  3. partial class DoctorForm
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DoctorForm));
  29. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  30. this.archiefToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  31. this.selectSessionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  32. this.sESSIONSToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  33. this.nieuwePatientToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  34. this.selectArchiveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  35. this.chatBox = new System.Windows.Forms.TextBox();
  36. this.messageBox = new System.Windows.Forms.TextBox();
  37. this.chatArea = new System.Windows.Forms.GroupBox();
  38. this.messageButton = new System.Windows.Forms.Button();
  39. this.doctorTabControl = new System.Windows.Forms.TabControl();
  40. this.tabPageSummary = new System.Windows.Forms.TabPage();
  41. this.doctorSummaryUC1 = new FietsClient.Forms.DoctorSummaryUC();
  42. this.menuStrip1.SuspendLayout();
  43. this.chatArea.SuspendLayout();
  44. this.doctorTabControl.SuspendLayout();
  45. this.tabPageSummary.SuspendLayout();
  46. this.SuspendLayout();
  47. //
  48. // menuStrip1
  49. //
  50. this.menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
  51. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  52. this.archiefToolStripMenuItem});
  53. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  54. this.menuStrip1.Name = "menuStrip1";
  55. this.menuStrip1.Size = new System.Drawing.Size(1071, 24);
  56. this.menuStrip1.TabIndex = 0;
  57. this.menuStrip1.Text = "menuStrip1";
  58. //
  59. // archiefToolStripMenuItem
  60. //
  61. this.archiefToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  62. this.selectSessionToolStripMenuItem,
  63. this.selectArchiveToolStripMenuItem});
  64. this.archiefToolStripMenuItem.Name = "archiefToolStripMenuItem";
  65. this.archiefToolStripMenuItem.Size = new System.Drawing.Size(56, 20);
  66. this.archiefToolStripMenuItem.Text = "Patient";
  67. //
  68. // selectSessionToolStripMenuItem
  69. //
  70. this.selectSessionToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  71. this.sESSIONSToolStripMenuItem,
  72. this.nieuwePatientToolStripMenuItem});
  73. this.selectSessionToolStripMenuItem.Name = "selectSessionToolStripMenuItem";
  74. this.selectSessionToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
  75. this.selectSessionToolStripMenuItem.Text = "Select patient";
  76. //
  77. // sESSIONSToolStripMenuItem
  78. //
  79. this.sESSIONSToolStripMenuItem.Name = "sESSIONSToolStripMenuItem";
  80. this.sESSIONSToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
  81. this.sESSIONSToolStripMenuItem.Text = "Patients";
  82. //
  83. // nieuwePatientToolStripMenuItem
  84. //
  85. this.nieuwePatientToolStripMenuItem.Name = "nieuwePatientToolStripMenuItem";
  86. this.nieuwePatientToolStripMenuItem.Size = new System.Drawing.Size(154, 22);
  87. this.nieuwePatientToolStripMenuItem.Text = "Nieuwe Patient";
  88. this.nieuwePatientToolStripMenuItem.Click += new System.EventHandler(this.nieuwePatientToolStripMenuItem_Click);
  89. //
  90. // selectArchiveToolStripMenuItem
  91. //
  92. this.selectArchiveToolStripMenuItem.Name = "selectArchiveToolStripMenuItem";
  93. this.selectArchiveToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
  94. this.selectArchiveToolStripMenuItem.Text = "Select archive";
  95. //
  96. // chatBox
  97. //
  98. this.chatBox.Location = new System.Drawing.Point(0, 13);
  99. this.chatBox.Multiline = true;
  100. this.chatBox.Name = "chatBox";
  101. this.chatBox.ReadOnly = true;
  102. this.chatBox.Size = new System.Drawing.Size(228, 560);
  103. this.chatBox.TabIndex = 3;
  104. //
  105. // messageBox
  106. //
  107. this.messageBox.Location = new System.Drawing.Point(0, 579);
  108. this.messageBox.Name = "messageBox";
  109. this.messageBox.Size = new System.Drawing.Size(228, 20);
  110. this.messageBox.TabIndex = 6;
  111. this.messageBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.messageBox_KeyPress);
  112. //
  113. // chatArea
  114. //
  115. this.chatArea.Controls.Add(this.messageButton);
  116. this.chatArea.Controls.Add(this.chatBox);
  117. this.chatArea.Controls.Add(this.messageBox);
  118. this.chatArea.Location = new System.Drawing.Point(849, 50);
  119. this.chatArea.Name = "chatArea";
  120. this.chatArea.Size = new System.Drawing.Size(228, 641);
  121. this.chatArea.TabIndex = 5;
  122. this.chatArea.TabStop = false;
  123. this.chatArea.Text = "Chat:";
  124. //
  125. // messageButton
  126. //
  127. this.messageButton.Location = new System.Drawing.Point(0, 605);
  128. this.messageButton.Name = "messageButton";
  129. this.messageButton.Size = new System.Drawing.Size(228, 30);
  130. this.messageButton.TabIndex = 7;
  131. this.messageButton.Text = "send";
  132. this.messageButton.UseVisualStyleBackColor = true;
  133. this.messageButton.Click += new System.EventHandler(this.messageButton_Click);
  134. //
  135. // doctorTabControl
  136. //
  137. this.doctorTabControl.Controls.Add(this.tabPageSummary);
  138. this.doctorTabControl.Location = new System.Drawing.Point(13, 28);
  139. this.doctorTabControl.Name = "doctorTabControl";
  140. this.doctorTabControl.SelectedIndex = 0;
  141. this.doctorTabControl.Size = new System.Drawing.Size(830, 666);
  142. this.doctorTabControl.TabIndex = 6;
  143. //
  144. // tabPageSummary
  145. //
  146. this.tabPageSummary.BackColor = System.Drawing.Color.Transparent;
  147. this.tabPageSummary.Controls.Add(this.doctorSummaryUC1);
  148. this.tabPageSummary.Location = new System.Drawing.Point(4, 22);
  149. this.tabPageSummary.Name = "tabPageSummary";
  150. this.tabPageSummary.Size = new System.Drawing.Size(822, 640);
  151. this.tabPageSummary.TabIndex = 0;
  152. this.tabPageSummary.Text = "Summary";
  153. //
  154. // doctorSummaryUC1
  155. //
  156. this.doctorSummaryUC1.BackColor = System.Drawing.SystemColors.Control;
  157. this.doctorSummaryUC1.Location = new System.Drawing.Point(0, 0);
  158. this.doctorSummaryUC1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  159. this.doctorSummaryUC1.Name = "doctorSummaryUC1";
  160. this.doctorSummaryUC1.Size = new System.Drawing.Size(822, 640);
  161. this.doctorSummaryUC1.TabIndex = 0;
  162. //
  163. // DoctorForm
  164. //
  165. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  166. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  167. this.BackColor = System.Drawing.SystemColors.Control;
  168. this.ClientSize = new System.Drawing.Size(1071, 615);
  169. this.Controls.Add(this.doctorTabControl);
  170. this.Controls.Add(this.chatArea);
  171. this.Controls.Add(this.menuStrip1);
  172. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  173. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  174. this.MainMenuStrip = this.menuStrip1;
  175. this.MaximizeBox = false;
  176. this.Name = "DoctorForm";
  177. this.Text = "Doctor";
  178. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.DoctorForm_FormClosing);
  179. this.Load += new System.EventHandler(this.Form1_Load);
  180. this.menuStrip1.ResumeLayout(false);
  181. this.menuStrip1.PerformLayout();
  182. this.chatArea.ResumeLayout(false);
  183. this.chatArea.PerformLayout();
  184. this.doctorTabControl.ResumeLayout(false);
  185. this.tabPageSummary.ResumeLayout(false);
  186. this.ResumeLayout(false);
  187. this.PerformLayout();
  188. }
  189. #endregion
  190. private System.Windows.Forms.MenuStrip menuStrip1;
  191. private System.Windows.Forms.ToolStripMenuItem archiefToolStripMenuItem;
  192. private System.Windows.Forms.ToolStripMenuItem selectSessionToolStripMenuItem;
  193. private System.Windows.Forms.ToolStripMenuItem sESSIONSToolStripMenuItem;
  194. private System.Windows.Forms.TextBox chatBox;
  195. private System.Windows.Forms.TextBox messageBox;
  196. private System.Windows.Forms.GroupBox chatArea;
  197. private System.Windows.Forms.ToolStripMenuItem selectArchiveToolStripMenuItem;
  198. private System.Windows.Forms.Button messageButton;
  199. private System.Windows.Forms.TabControl doctorTabControl;
  200. private System.Windows.Forms.TabPage tabPageSummary;
  201. private Forms.DoctorSummaryUC doctorSummaryUC1;
  202. private System.Windows.Forms.ToolStripMenuItem nieuwePatientToolStripMenuItem;
  203. }
  204. }