ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/NexusPowerControl/trunk/NexusPowerControl/Form1.Designer.cs
Revision: 7
Committed: Sat Oct 22 08:22:48 2011 UTC (12 years, 1 month ago) by william
File size: 2450 byte(s)
Log Message:
** add initial theme images
** add theme image to main form
** set form opacity to 98%
** need to work out transparency for the theme image (beyond setting form opacity)
** need to setup on form:
+ No borders/control box
+ Ability to move form by clicking/dragging on inner parts of form
+ etc, etc

File Contents

# Content
1 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 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.Image = global::NexusPowerControl.Properties.Resources.Aero_LowRes;
39 this.pic_main.Location = new System.Drawing.Point(0, 0);
40 this.pic_main.Name = "pic_main";
41 this.pic_main.Size = new System.Drawing.Size(809, 489);
42 this.pic_main.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
43 this.pic_main.TabIndex = 4;
44 this.pic_main.TabStop = false;
45 //
46 // Form1
47 //
48 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
49 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
50 this.ClientSize = new System.Drawing.Size(809, 489);
51 this.Controls.Add(this.pic_main);
52 this.Name = "Form1";
53 this.Opacity = 0.98D;
54 this.Text = "Form1";
55 this.TransparencyKey = System.Drawing.Color.Red;
56 ((System.ComponentModel.ISupportInitialize)(this.pic_main)).EndInit();
57 this.ResumeLayout(false);
58
59 }
60
61 #endregion
62
63 private System.Windows.Forms.PictureBox pic_main;
64
65 }
66 }
67