Changeset 1728 for Scheduling/trunk/cs/bsdx0200GUISourceCode/DSplash.cs
- Timestamp:
- Dec 24, 2015, 10:43:43 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Scheduling/trunk/cs/bsdx0200GUISourceCode/DSplash.cs
r1143 r1728 15 15 public class DSplash : System.Windows.Forms.Form 16 16 { 17 private System.Windows.Forms.Label label1;18 17 private System.Windows.Forms.LinkLabel lnkMail; 19 18 private System.Windows.Forms.Label lblStatus; 20 19 private Label lblVersion; 21 private Label label2;22 20 private ProgressBar progressBar1; 23 21 /// <summary> … … 61 59 { 62 60 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DSplash)); 63 this.label1 = new System.Windows.Forms.Label();64 61 this.lnkMail = new System.Windows.Forms.LinkLabel(); 65 62 this.lblStatus = new System.Windows.Forms.Label(); 66 63 this.lblVersion = new System.Windows.Forms.Label(); 67 this.label2 = new System.Windows.Forms.Label();68 64 this.progressBar1 = new System.Windows.Forms.ProgressBar(); 69 65 this.SuspendLayout(); 70 66 // 71 // label172 //73 this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));74 this.label1.Location = new System.Drawing.Point(12, 67);75 this.label1.Name = "label1";76 this.label1.Size = new System.Drawing.Size(464, 40);77 this.label1.TabIndex = 0;78 this.label1.Text = "Clinical Scheduling";79 this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;80 //81 67 // lnkMail 82 68 // 83 this.lnkMail.Location = new System.Drawing.Point(0, 0); 69 this.lnkMail.BackColor = System.Drawing.Color.Gray; 70 this.lnkMail.ForeColor = System.Drawing.SystemColors.HotTrack; 71 this.lnkMail.Location = new System.Drawing.Point(489, 229); 84 72 this.lnkMail.Name = "lnkMail"; 85 73 this.lnkMail.Size = new System.Drawing.Size(100, 23); 86 74 this.lnkMail.TabIndex = 4; 75 this.lnkMail.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkMail_LinkClicked); 87 76 // 88 77 // lblStatus 89 78 // 79 this.lblStatus.BackColor = System.Drawing.Color.Gray; 90 80 this.lblStatus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; 91 this.lblStatus.Location = new System.Drawing.Point(80, 159); 81 this.lblStatus.ForeColor = System.Drawing.SystemColors.HotTrack; 82 this.lblStatus.Location = new System.Drawing.Point(261, 202); 92 83 this.lblStatus.Name = "lblStatus"; 93 84 this.lblStatus.Size = new System.Drawing.Size(328, 16); 94 85 this.lblStatus.TabIndex = 3; 95 86 this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 87 this.lblStatus.Click += new System.EventHandler(this.lblStatus_Click); 96 88 // 97 89 // lblVersion 98 90 // 99 91 this.lblVersion.AutoSize = true; 100 this.lblVersion.Location = new System.Drawing.Point(210, 117); 92 this.lblVersion.BackColor = System.Drawing.Color.Gray; 93 this.lblVersion.ForeColor = System.Drawing.SystemColors.HotTrack; 94 this.lblVersion.Location = new System.Drawing.Point(239, 9); 101 95 this.lblVersion.Name = "lblVersion"; 102 96 this.lblVersion.Size = new System.Drawing.Size(52, 13); … … 105 99 this.lblVersion.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 106 100 // 107 // label2108 //109 this.label2.AutoSize = true;110 this.label2.Font = new System.Drawing.Font("Book Antiqua", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));111 this.label2.Location = new System.Drawing.Point(180, 21);112 this.label2.Name = "label2";113 this.label2.Size = new System.Drawing.Size(130, 46);114 this.label2.TabIndex = 6;115 this.label2.Text = "VISTA";116 //117 101 // progressBar1 118 102 // 119 this.progressBar1.Location = new System.Drawing.Point(18, 207); 103 this.progressBar1.BackColor = System.Drawing.Color.Gray; 104 this.progressBar1.Location = new System.Drawing.Point(60, 164); 120 105 this.progressBar1.Name = "progressBar1"; 121 106 this.progressBar1.Size = new System.Drawing.Size(458, 14); … … 127 112 this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); 128 113 this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))); 129 this.ClientSize = new System.Drawing.Size(488, 252); 114 this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage"))); 115 this.ClientSize = new System.Drawing.Size(601, 403); 130 116 this.ControlBox = false; 131 117 this.Controls.Add(this.progressBar1); 132 this.Controls.Add(this.label2);133 118 this.Controls.Add(this.lblVersion); 134 119 this.Controls.Add(this.lblStatus); 135 120 this.Controls.Add(this.lnkMail); 136 this.Controls.Add(this.label1);137 121 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 138 122 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); … … 224 208 } 225 209 226 } 227 228 229 210 private void label2_Click(object sender, EventArgs e) 211 { 212 213 } 214 215 private void lblStatus_Click(object sender, EventArgs e) 216 { 217 218 } 219 220 private void lnkMail_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) 221 { 222 223 } 224 } 230 225 }
Note:
See TracChangeset
for help on using the changeset viewer.