DoctorForm.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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.PatientBox = new System.Windows.Forms.ToolStripComboBox();
  32. this.sessionsBox = new System.Windows.Forms.ToolStripComboBox();
  33. this.selectSessionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  34. this.chatBox = new System.Windows.Forms.TextBox();
  35. this.messageBox = new System.Windows.Forms.TextBox();
  36. this.chatArea = new System.Windows.Forms.GroupBox();
  37. this.messageButton = new System.Windows.Forms.Button();
  38. this.doctorTabControl = new System.Windows.Forms.TabControl();
  39. this.tabPageSummary = new System.Windows.Forms.TabPage();
  40. this.doctorSummaryUC1 = new FietsClient.Forms.DoctorSummaryUC();
  41. this.loadUsersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  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.Padding = new System.Windows.Forms.Padding(8, 2, 0, 2);
  56. this.menuStrip1.Size = new System.Drawing.Size(1445, 28);
  57. this.menuStrip1.TabIndex = 0;
  58. this.menuStrip1.Text = "menuStrip1";
  59. //
  60. // archiefToolStripMenuItem
  61. //
  62. this.archiefToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  63. this.loadUsersToolStripMenuItem,
  64. this.PatientBox,
  65. this.sessionsBox,
  66. this.selectSessionToolStripMenuItem});
  67. this.archiefToolStripMenuItem.Name = "archiefToolStripMenuItem";
  68. this.archiefToolStripMenuItem.Size = new System.Drawing.Size(70, 24);
  69. this.archiefToolStripMenuItem.Text = "Archive";
  70. //
  71. // PatientBox
  72. //
  73. this.PatientBox.Name = "PatientBox";
  74. this.PatientBox.Size = new System.Drawing.Size(121, 28);
  75. this.PatientBox.SelectedIndexChanged += new System.EventHandler(this.PatientBox_SelectedIndexChanged);
  76. //
  77. // sessionsBox
  78. //
  79. this.sessionsBox.Name = "sessionsBox";
  80. this.sessionsBox.Size = new System.Drawing.Size(121, 28);
  81. //
  82. // selectSessionToolStripMenuItem
  83. //
  84. this.selectSessionToolStripMenuItem.Name = "selectSessionToolStripMenuItem";
  85. this.selectSessionToolStripMenuItem.Size = new System.Drawing.Size(187, 26);
  86. this.selectSessionToolStripMenuItem.Text = "Select session";
  87. this.selectSessionToolStripMenuItem.Click += new System.EventHandler(this.selectSessionToolStripMenuItem_Click);
  88. //
  89. // chatBox
  90. //
  91. this.chatBox.Location = new System.Drawing.Point(0, 16);
  92. this.chatBox.Margin = new System.Windows.Forms.Padding(4);
  93. this.chatBox.Multiline = true;
  94. this.chatBox.Name = "chatBox";
  95. this.chatBox.ReadOnly = true;
  96. this.chatBox.Size = new System.Drawing.Size(303, 688);
  97. this.chatBox.TabIndex = 3;
  98. //
  99. // messageBox
  100. //
  101. this.messageBox.Location = new System.Drawing.Point(0, 713);
  102. this.messageBox.Margin = new System.Windows.Forms.Padding(4);
  103. this.messageBox.Name = "messageBox";
  104. this.messageBox.Size = new System.Drawing.Size(303, 22);
  105. this.messageBox.TabIndex = 6;
  106. this.messageBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.messageBox_KeyPress);
  107. //
  108. // chatArea
  109. //
  110. this.chatArea.Controls.Add(this.messageButton);
  111. this.chatArea.Controls.Add(this.chatBox);
  112. this.chatArea.Controls.Add(this.messageBox);
  113. this.chatArea.Location = new System.Drawing.Point(1132, 62);
  114. this.chatArea.Margin = new System.Windows.Forms.Padding(4);
  115. this.chatArea.Name = "chatArea";
  116. this.chatArea.Padding = new System.Windows.Forms.Padding(4);
  117. this.chatArea.Size = new System.Drawing.Size(304, 789);
  118. this.chatArea.TabIndex = 5;
  119. this.chatArea.TabStop = false;
  120. this.chatArea.Text = "Chat:";
  121. //
  122. // messageButton
  123. //
  124. this.messageButton.Location = new System.Drawing.Point(0, 745);
  125. this.messageButton.Margin = new System.Windows.Forms.Padding(4);
  126. this.messageButton.Name = "messageButton";
  127. this.messageButton.Size = new System.Drawing.Size(304, 37);
  128. this.messageButton.TabIndex = 7;
  129. this.messageButton.Text = "send";
  130. this.messageButton.UseVisualStyleBackColor = true;
  131. this.messageButton.Click += new System.EventHandler(this.messageButton_Click);
  132. //
  133. // doctorTabControl
  134. //
  135. this.doctorTabControl.Controls.Add(this.tabPageSummary);
  136. this.doctorTabControl.Location = new System.Drawing.Point(17, 34);
  137. this.doctorTabControl.Margin = new System.Windows.Forms.Padding(4);
  138. this.doctorTabControl.Name = "doctorTabControl";
  139. this.doctorTabControl.SelectedIndex = 0;
  140. this.doctorTabControl.Size = new System.Drawing.Size(1107, 820);
  141. this.doctorTabControl.TabIndex = 6;
  142. //
  143. // tabPageSummary
  144. //
  145. this.tabPageSummary.BackColor = System.Drawing.Color.Transparent;
  146. this.tabPageSummary.Controls.Add(this.doctorSummaryUC1);
  147. this.tabPageSummary.Location = new System.Drawing.Point(4, 25);
  148. this.tabPageSummary.Margin = new System.Windows.Forms.Padding(4);
  149. this.tabPageSummary.Name = "tabPageSummary";
  150. this.tabPageSummary.Size = new System.Drawing.Size(1099, 791);
  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(5);
  159. this.doctorSummaryUC1.Name = "doctorSummaryUC1";
  160. this.doctorSummaryUC1.Size = new System.Drawing.Size(1096, 788);
  161. this.doctorSummaryUC1.TabIndex = 0;
  162. //
  163. // loadUsersToolStripMenuItem
  164. //
  165. this.loadUsersToolStripMenuItem.Name = "loadUsersToolStripMenuItem";
  166. this.loadUsersToolStripMenuItem.Size = new System.Drawing.Size(187, 26);
  167. this.loadUsersToolStripMenuItem.Text = "Load users";
  168. this.loadUsersToolStripMenuItem.Click += new System.EventHandler(this.loadUsersToolStripMenuItem_Click);
  169. //
  170. // DoctorForm
  171. //
  172. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  173. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  174. this.BackColor = System.Drawing.SystemColors.Control;
  175. this.ClientSize = new System.Drawing.Size(1445, 875);
  176. this.Controls.Add(this.doctorTabControl);
  177. this.Controls.Add(this.chatArea);
  178. this.Controls.Add(this.menuStrip1);
  179. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  180. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  181. this.MainMenuStrip = this.menuStrip1;
  182. this.Margin = new System.Windows.Forms.Padding(4);
  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. }
  212. }