ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/NexusPowerControl/trunk/NexusPowerControl/Form1.Designer.cs
Revision: 8
Committed: Sat Oct 22 08:58:41 2011 UTC (11 years, 11 months ago) by william
File size: 2423 byte(s)
Log Message:
** initial support for themes (better put this in now, rather than having to do a major re-write later)

File Contents

# User Rev Content
1 william 4 namespace NexusPowerControl
2     {
3     partial class Form1
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 william 7 this.pic_main = new System.Windows.Forms.PictureBox();
32     ((System.ComponentModel.ISupportInitialize)(this.pic_main)).BeginInit();
33     this.SuspendLayout();
34     //
35     // pic_main
36     //
37     this.pic_main.Dock = System.Windows.Forms.DockStyle.Fill;
38     this.pic_main.Location = new System.Drawing.Point(0, 0);
39     this.pic_main.Name = "pic_main";
40     this.pic_main.Size = new System.Drawing.Size(809, 489);
41     this.pic_main.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
42     this.pic_main.TabIndex = 4;
43     this.pic_main.TabStop = false;
44     //
45     // Form1
46     //
47     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
48 william 4 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
49 william 7 this.ClientSize = new System.Drawing.Size(809, 489);
50     this.Controls.Add(this.pic_main);
51     this.Name = "Form1";
52     this.Opacity = 0.98D;
53 william 4 this.Text = "Form1";
54 william 7 this.TransparencyKey = System.Drawing.Color.Red;
55 william 8 this.Load += new System.EventHandler(this.Form1_Load);
56 william 7 ((System.ComponentModel.ISupportInitialize)(this.pic_main)).EndInit();
57     this.ResumeLayout(false);
58    
59 william 4 }
60    
61     #endregion
62 william 7
63     private System.Windows.Forms.PictureBox pic_main;
64    
65 william 4 }
66     }
67