MainWindow.Designer.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. using System;
  2. using System.Windows.Forms;
  3. namespace ErgometerDoctorApplication
  4. {
  5. partial class MainWindow
  6. {
  7. /// <summary>
  8. /// Required designer variable.
  9. /// </summary>
  10. private System.ComponentModel.IContainer components = null;
  11. /// <summary>
  12. /// Clean up any resources being used.
  13. /// </summary>
  14. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  15. protected override void Dispose(bool disposing)
  16. {
  17. if (disposing && (components != null))
  18. {
  19. components.Dispose();
  20. }
  21. base.Dispose(disposing);
  22. }
  23. #region Windows Form Designer generated code
  24. /// <summary>
  25. /// Required method for Designer support - do not modify
  26. /// the contents of this method with the code editor.
  27. /// </summary>
  28. private void InitializeComponent()
  29. {
  30. this.MenuPanel = new System.Windows.Forms.Panel();
  31. this.BtnLogout = new System.Windows.Forms.Button();
  32. this.BtnSessionHistory = new System.Windows.Forms.Button();
  33. this.BtnBroadcast = new System.Windows.Forms.Button();
  34. this.label2 = new System.Windows.Forms.Label();
  35. this.label1 = new System.Windows.Forms.Label();
  36. this.BtnClientData = new System.Windows.Forms.Button();
  37. this.BtnActiveSessions = new System.Windows.Forms.Button();
  38. this.LblHoofdvenster = new System.Windows.Forms.Label();
  39. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  40. this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  41. this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  42. this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  43. this.panel1 = new System.Windows.Forms.Panel();
  44. this.HeaderLabel = new System.Windows.Forms.Label();
  45. this.panel3 = new System.Windows.Forms.Panel();
  46. this.MainContainer = new System.Windows.Forms.Panel();
  47. this.conActiveSessions = new ErgometerDoctorApplication.ConActiveSessions();
  48. this.conClientData = new ErgometerDoctorApplication.ConClientData();
  49. this.conSessionHistory = new ErgometerDoctorApplication.ConSessionHistory();
  50. this.conClientBroadcast = new ErgometerDoctorApplication.ConClientBroadcast();
  51. this.conPanelLogin = new ErgometerDoctorApplication.ConPanelLogin(this);
  52. this.updateTimer = new Timer();
  53. MainContainer.Visible = false;
  54. panel1.Visible = false;
  55. MenuPanel.Visible = false;
  56. menuStrip1.Visible = false;
  57. //
  58. // MenuPanel
  59. //
  60. this.MenuPanel.BackColor = System.Drawing.SystemColors.ControlLight;
  61. this.MenuPanel.Controls.Add(this.BtnLogout);
  62. this.MenuPanel.Controls.Add(this.BtnSessionHistory);
  63. this.MenuPanel.Controls.Add(this.BtnBroadcast);
  64. this.MenuPanel.Controls.Add(this.label2);
  65. this.MenuPanel.Controls.Add(this.label1);
  66. this.MenuPanel.Controls.Add(this.BtnClientData);
  67. this.MenuPanel.Controls.Add(this.BtnActiveSessions);
  68. this.MenuPanel.Controls.Add(this.LblHoofdvenster);
  69. this.MenuPanel.Dock = System.Windows.Forms.DockStyle.Left;
  70. this.MenuPanel.Location = new System.Drawing.Point(0, 24);
  71. this.MenuPanel.Margin = new System.Windows.Forms.Padding(0);
  72. this.MenuPanel.Name = "MenuPanel";
  73. this.MenuPanel.Size = new System.Drawing.Size(200, 537);
  74. this.MenuPanel.TabIndex = 0;
  75. //
  76. // BtnLogout
  77. //
  78. this.BtnLogout.BackColor = System.Drawing.Color.DarkGray;
  79. this.BtnLogout.Dock = System.Windows.Forms.DockStyle.Bottom;
  80. this.BtnLogout.FlatAppearance.BorderSize = 0;
  81. this.BtnLogout.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  82. this.BtnLogout.ForeColor = System.Drawing.Color.White;
  83. this.BtnLogout.Location = new System.Drawing.Point(0, 205);
  84. this.BtnLogout.Name = "BtnLogout";
  85. this.BtnLogout.Size = new System.Drawing.Size(200, 35);
  86. this.BtnLogout.Text = "Uitloggen";
  87. this.BtnLogout.UseVisualStyleBackColor = false;
  88. this.BtnLogout.Click += new System.EventHandler(this.buttonLogout_Click);
  89. //
  90. // BtnSessionHistory
  91. //
  92. this.BtnSessionHistory.BackColor = System.Drawing.Color.DarkGray;
  93. this.BtnSessionHistory.Dock = System.Windows.Forms.DockStyle.Top;
  94. this.BtnSessionHistory.FlatAppearance.BorderSize = 0;
  95. this.BtnSessionHistory.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  96. this.BtnSessionHistory.ForeColor = System.Drawing.Color.White;
  97. this.BtnSessionHistory.Location = new System.Drawing.Point(0, 205);
  98. this.BtnSessionHistory.Name = "BtnSessionHistory";
  99. this.BtnSessionHistory.Size = new System.Drawing.Size(200, 35);
  100. this.BtnSessionHistory.TabIndex = 7;
  101. this.BtnSessionHistory.Text = "Sessie Geschiedenis";
  102. this.BtnSessionHistory.UseVisualStyleBackColor = false;
  103. this.BtnSessionHistory.Click += new System.EventHandler(this.BtnSessionHistory_Click);
  104. //
  105. // label2
  106. //
  107. this.label2.Dock = System.Windows.Forms.DockStyle.Top;
  108. this.label2.Location = new System.Drawing.Point(0, 180);
  109. this.label2.Margin = new System.Windows.Forms.Padding(6, 3, 6, 3);
  110. this.label2.Name = "label2";
  111. this.label2.Padding = new System.Windows.Forms.Padding(5, 4, 0, 0);
  112. this.label2.Size = new System.Drawing.Size(200, 25);
  113. this.label2.TabIndex = 6;
  114. this.label2.Text = "SESSIE BEHEER";
  115. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  116. //
  117. // updateTimer
  118. //
  119. this.updateTimer.Interval = 3000;
  120. this.updateTimer.Tick += new EventHandler(this.updateTimer_tick);
  121. //
  122. // label1
  123. //
  124. this.label1.Dock = System.Windows.Forms.DockStyle.Top;
  125. this.label1.Location = new System.Drawing.Point(0, 95);
  126. this.label1.Margin = new System.Windows.Forms.Padding(6, 3, 6, 3);
  127. this.label1.Name = "label1";
  128. this.label1.Size = new System.Drawing.Size(200, 50);
  129. this.label1.TabIndex = 5;
  130. //
  131. // BtnBroadcast
  132. //
  133. this.BtnBroadcast.BackColor = System.Drawing.Color.DarkGray;
  134. this.BtnBroadcast.Dock = System.Windows.Forms.DockStyle.Top;
  135. this.BtnBroadcast.FlatAppearance.BorderSize = 0;
  136. this.BtnBroadcast.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  137. this.BtnBroadcast.ForeColor = System.Drawing.Color.White;
  138. this.BtnBroadcast.Location = new System.Drawing.Point(0, 95);
  139. this.BtnBroadcast.Name = "BtnBroadcast";
  140. this.BtnBroadcast.Size = new System.Drawing.Size(200, 35);
  141. this.BtnBroadcast.TabIndex = 7;
  142. this.BtnBroadcast.Text = "Broadcast";
  143. this.BtnBroadcast.UseVisualStyleBackColor = false;
  144. this.BtnBroadcast.Click += new System.EventHandler(this.BtnBroadcast_Click);
  145. //
  146. // BtnClientData
  147. //
  148. this.BtnClientData.BackColor = System.Drawing.Color.DarkGray;
  149. this.BtnClientData.Dock = System.Windows.Forms.DockStyle.Top;
  150. this.BtnClientData.FlatAppearance.BorderSize = 0;
  151. this.BtnClientData.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  152. this.BtnClientData.ForeColor = System.Drawing.Color.White;
  153. this.BtnClientData.Location = new System.Drawing.Point(0, 60);
  154. this.BtnClientData.Name = "BtnClientData";
  155. this.BtnClientData.Size = new System.Drawing.Size(200, 35);
  156. this.BtnClientData.TabIndex = 4;
  157. this.BtnClientData.Text = "Clientenbestand";
  158. this.BtnClientData.UseVisualStyleBackColor = false;
  159. this.BtnClientData.Click += new System.EventHandler(this.BtnClientData_Click);
  160. //
  161. // BtnActiveSessions
  162. //
  163. this.BtnActiveSessions.BackColor = System.Drawing.Color.DarkGray;
  164. this.BtnActiveSessions.Dock = System.Windows.Forms.DockStyle.Top;
  165. this.BtnActiveSessions.FlatAppearance.BorderSize = 0;
  166. this.BtnActiveSessions.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  167. this.BtnActiveSessions.ForeColor = System.Drawing.Color.White;
  168. this.BtnActiveSessions.Location = new System.Drawing.Point(0, 25);
  169. this.BtnActiveSessions.Name = "BtnActiveSessions";
  170. this.BtnActiveSessions.Size = new System.Drawing.Size(200, 35);
  171. this.BtnActiveSessions.TabIndex = 3;
  172. this.BtnActiveSessions.Text = "Actieve Sessies";
  173. this.BtnActiveSessions.UseVisualStyleBackColor = false;
  174. this.BtnActiveSessions.Click += new System.EventHandler(this.BtnActiveSessions_Click);
  175. //
  176. // LblHoofdvenster
  177. //
  178. this.LblHoofdvenster.Dock = System.Windows.Forms.DockStyle.Top;
  179. this.LblHoofdvenster.Location = new System.Drawing.Point(0, 0);
  180. this.LblHoofdvenster.Margin = new System.Windows.Forms.Padding(6, 3, 6, 3);
  181. this.LblHoofdvenster.Name = "LblHoofdvenster";
  182. this.LblHoofdvenster.Padding = new System.Windows.Forms.Padding(5, 4, 0, 0);
  183. this.LblHoofdvenster.Size = new System.Drawing.Size(200, 25);
  184. this.LblHoofdvenster.TabIndex = 0;
  185. this.LblHoofdvenster.Text = "HOOFDVENSTER";
  186. this.LblHoofdvenster.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  187. //
  188. // menuStrip1
  189. //
  190. this.menuStrip1.BackColor = System.Drawing.Color.DimGray;
  191. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  192. this.fileToolStripMenuItem,
  193. this.editToolStripMenuItem,
  194. this.viewToolStripMenuItem});
  195. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  196. this.menuStrip1.Name = "menuStrip1";
  197. this.menuStrip1.Size = new System.Drawing.Size(784, 24);
  198. this.menuStrip1.TabIndex = 1;
  199. this.menuStrip1.Text = "menuStrip1";
  200. //
  201. // fileToolStripMenuItem
  202. //
  203. this.fileToolStripMenuItem.ForeColor = System.Drawing.Color.White;
  204. this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
  205. this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
  206. this.fileToolStripMenuItem.Text = "File";
  207. //
  208. // editToolStripMenuItem
  209. //
  210. this.editToolStripMenuItem.ForeColor = System.Drawing.Color.White;
  211. this.editToolStripMenuItem.Name = "editToolStripMenuItem";
  212. this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
  213. this.editToolStripMenuItem.Text = "Edit";
  214. //
  215. // viewToolStripMenuItem
  216. //
  217. this.viewToolStripMenuItem.ForeColor = System.Drawing.Color.White;
  218. this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
  219. this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
  220. this.viewToolStripMenuItem.Text = "View";
  221. //
  222. // panel1
  223. //
  224. this.panel1.BackColor = System.Drawing.Color.White;
  225. this.panel1.Controls.Add(this.HeaderLabel);
  226. this.panel1.Controls.Add(this.panel3);
  227. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  228. this.panel1.Location = new System.Drawing.Point(200, 24);
  229. this.panel1.Name = "panel1";
  230. this.panel1.Size = new System.Drawing.Size(584, 78);
  231. this.panel1.TabIndex = 2;
  232. //
  233. // HeaderLabel
  234. //
  235. this.HeaderLabel.Dock = System.Windows.Forms.DockStyle.Top;
  236. this.HeaderLabel.Font = new System.Drawing.Font("Segoe UI Semibold", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  237. this.HeaderLabel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
  238. this.HeaderLabel.Location = new System.Drawing.Point(0, 0);
  239. this.HeaderLabel.Name = "HeaderLabel";
  240. this.HeaderLabel.Padding = new System.Windows.Forms.Padding(8, 12, 0, 0);
  241. this.HeaderLabel.Size = new System.Drawing.Size(584, 50);
  242. this.HeaderLabel.TabIndex = 1;
  243. this.HeaderLabel.Text = "Actieve Sessies";
  244. //
  245. // panel3
  246. //
  247. this.panel3.BackColor = System.Drawing.Color.Silver;
  248. this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
  249. this.panel3.ForeColor = System.Drawing.Color.Black;
  250. this.panel3.Location = new System.Drawing.Point(0, 74);
  251. this.panel3.Name = "panel3";
  252. this.panel3.Size = new System.Drawing.Size(584, 4);
  253. this.panel3.TabIndex = 0;
  254. //
  255. // MainContainer
  256. //
  257. this.MainContainer.Controls.Add(this.conActiveSessions);
  258. this.MainContainer.Controls.Add(this.conClientData);
  259. this.MainContainer.Controls.Add(this.conSessionHistory);
  260. this.MainContainer.Controls.Add(this.conClientBroadcast);
  261. this.MainContainer.Dock = System.Windows.Forms.DockStyle.Fill;
  262. this.MainContainer.Location = new System.Drawing.Point(200, 102);
  263. this.MainContainer.Name = "MainContainer";
  264. this.MainContainer.Size = new System.Drawing.Size(584, 459);
  265. this.MainContainer.TabIndex = 3;
  266. //
  267. // MainWindow
  268. //
  269. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  270. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  271. this.ClientSize = new System.Drawing.Size(700, 500);
  272. this.MinimumSize = new System.Drawing.Size(650, 550);
  273. this.Controls.Add(this.MainContainer);
  274. this.Controls.Add(this.panel1);
  275. this.Controls.Add(this.MenuPanel);
  276. this.Controls.Add(this.menuStrip1);
  277. this.Controls.Add(this.conPanelLogin);
  278. this.MainMenuStrip = this.menuStrip1;
  279. this.Name = "MainWindow";
  280. this.Text = "Dokter applicatie";
  281. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  282. }
  283. #endregion
  284. private Panel MenuPanel;
  285. private Label LblHoofdvenster;
  286. private MenuStrip menuStrip1;
  287. private ToolStripMenuItem fileToolStripMenuItem;
  288. private ToolStripMenuItem editToolStripMenuItem;
  289. private ToolStripMenuItem viewToolStripMenuItem;
  290. private Button BtnActiveSessions;
  291. private Button BtnBroadcast;
  292. private Button BtnLogout;
  293. private Button BtnSessionHistory;
  294. private Button BtnClientData;
  295. private Label label2;
  296. private Label label1;
  297. private Panel panel1;
  298. private Panel panel3;
  299. public Label HeaderLabel;
  300. public Timer updateTimer;
  301. public Panel MainContainer;
  302. public ConActiveSessions conActiveSessions;
  303. public ConSessionHistory conSessionHistory;
  304. public ConClientData conClientData;
  305. public ConPanelLogin conPanelLogin;
  306. public ConClientBroadcast conClientBroadcast;
  307. }
  308. }