ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/NexusPowerControl/trunk/NexusPowerControl/DesktopSplash.Designer.cs
Revision: 13
Committed: Sat Oct 22 23:15:43 2011 UTC (11 years, 7 months ago) by william
File size: 2384 byte(s)
Log Message:
*** add desktop blur form / with timer to launch MainUI

File Contents

# Content
1 namespace NexusPowerControl
2 {
3 partial class DesktopSplash
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.components = new System.ComponentModel.Container();
32 this.timer1 = new System.Windows.Forms.Timer(this.components);
33 this.SuspendLayout();
34 //
35 // timer1
36 //
37 this.timer1.Enabled = true;
38 this.timer1.Interval = 1;
39 this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
40 //
41 // DesktopSplash
42 //
43 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
44 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
45 this.BackColor = System.Drawing.Color.Black;
46 this.ClientSize = new System.Drawing.Size(284, 262);
47 this.ControlBox = false;
48 this.DoubleBuffered = true;
49 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
50 this.MaximizeBox = false;
51 this.Name = "DesktopSplash";
52 this.Opacity = 0.85D;
53 this.ShowIcon = false;
54 this.ShowInTaskbar = false;
55 this.Text = "DesktopSplash";
56 this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
57 this.Shown += new System.EventHandler(this.DesktopSplash_Shown);
58 this.ResumeLayout(false);
59
60 }
61
62 #endregion
63
64 private System.Windows.Forms.Timer timer1;
65 }
66 }