source: Scheduling/trunk/cs/bsdx0200GUISourceCode/LoadingSplash.Designer.cs@ 1071

Last change on this file since 1071 was 1070, checked in by Sam Habiel, 13 years ago

LoadingSplash: New Form that does... pretty much nothing. Just shows a splash when updating data from server.
CGView:

CGDocumentManager:

CGDocument:

File size: 2.9 KB
Line 
1namespace IndianHealthService.ClinicalScheduling
2{
3 partial class LoadingSplash
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.lblLoading = new System.Windows.Forms.Label();
32 this.SuspendLayout();
33 //
34 // lblLoading
35 //
36 this.lblLoading.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
37 | System.Windows.Forms.AnchorStyles.Left)
38 | System.Windows.Forms.AnchorStyles.Right)));
39 this.lblLoading.AutoSize = true;
40 this.lblLoading.Font = new System.Drawing.Font("Tahoma", 48F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
41 this.lblLoading.Location = new System.Drawing.Point(228, 181);
42 this.lblLoading.Name = "lblLoading";
43 this.lblLoading.Size = new System.Drawing.Size(255, 77);
44 this.lblLoading.TabIndex = 0;
45 this.lblLoading.Text = "Loading";
46 this.lblLoading.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
47 //
48 // LoadingSplash
49 //
50 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
51 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
52 this.BackColor = System.Drawing.SystemColors.ControlLightLight;
53 this.ClientSize = new System.Drawing.Size(722, 449);
54 this.Controls.Add(this.lblLoading);
55 this.ForeColor = System.Drawing.SystemColors.ControlLight;
56 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
57 this.Name = "LoadingSplash";
58 this.Opacity = 0.8D;
59 this.ShowIcon = false;
60 this.ShowInTaskbar = false;
61 this.Text = "Form1";
62 this.ResumeLayout(false);
63 this.PerformLayout();
64
65 }
66
67 #endregion
68
69 private System.Windows.Forms.Label lblLoading;
70 }
71}
Note: See TracBrowser for help on using the repository browser.