Ignore:
Timestamp:
Dec 24, 2015, 10:43:43 AM (8 years ago)
Author:
Faisal Sami
Message:

ClinicalScheduling version 2.0.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/DSplash.cs

    r1143 r1728  
    1515        public class DSplash : System.Windows.Forms.Form
    1616        {
    17                 private System.Windows.Forms.Label label1;
    1817                private System.Windows.Forms.LinkLabel lnkMail;
    1918                private System.Windows.Forms.Label lblStatus;
    2019        private Label lblVersion;
    21         private Label label2;
    2220        private ProgressBar progressBar1;
    2321                /// <summary>
     
    6159                {
    6260            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DSplash));
    63             this.label1 = new System.Windows.Forms.Label();
    6461            this.lnkMail = new System.Windows.Forms.LinkLabel();
    6562            this.lblStatus = new System.Windows.Forms.Label();
    6663            this.lblVersion = new System.Windows.Forms.Label();
    67             this.label2 = new System.Windows.Forms.Label();
    6864            this.progressBar1 = new System.Windows.Forms.ProgressBar();
    6965            this.SuspendLayout();
    7066            //
    71             // label1
    72             //
    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             //
    8167            // lnkMail
    8268            //
    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);
    8472            this.lnkMail.Name = "lnkMail";
    8573            this.lnkMail.Size = new System.Drawing.Size(100, 23);
    8674            this.lnkMail.TabIndex = 4;
     75            this.lnkMail.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkMail_LinkClicked);
    8776            //
    8877            // lblStatus
    8978            //
     79            this.lblStatus.BackColor = System.Drawing.Color.Gray;
    9080            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);
    9283            this.lblStatus.Name = "lblStatus";
    9384            this.lblStatus.Size = new System.Drawing.Size(328, 16);
    9485            this.lblStatus.TabIndex = 3;
    9586            this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     87            this.lblStatus.Click += new System.EventHandler(this.lblStatus_Click);
    9688            //
    9789            // lblVersion
    9890            //
    9991            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);
    10195            this.lblVersion.Name = "lblVersion";
    10296            this.lblVersion.Size = new System.Drawing.Size(52, 13);
     
    10599            this.lblVersion.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
    106100            //
    107             // label2
    108             //
    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             //
    117101            // progressBar1
    118102            //
    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);
    120105            this.progressBar1.Name = "progressBar1";
    121106            this.progressBar1.Size = new System.Drawing.Size(458, 14);
     
    127112            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
    128113            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);
    130116            this.ControlBox = false;
    131117            this.Controls.Add(this.progressBar1);
    132             this.Controls.Add(this.label2);
    133118            this.Controls.Add(this.lblVersion);
    134119            this.Controls.Add(this.lblStatus);
    135120            this.Controls.Add(this.lnkMail);
    136             this.Controls.Add(this.label1);
    137121            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
    138122            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     
    224208        }
    225209
    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    }   
    230225}
Note: See TracChangeset for help on using the changeset viewer.