DoctorForm.Designer.cs 11 KB

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