DoctorForm.Designer.cs 10 KB

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