ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/NexusPowerControl/trunk/NexusPowerControl/ThemeButton.Designer.cs
Revision: 11
Committed: Sat Oct 22 22:14:15 2011 UTC (11 years, 7 months ago) by william
File size: 4213 byte(s)
Log Message:
implement theme button clicking

File Contents

# Content
1 namespace NexusPowerControl
2 {
3 partial class ThemeButton
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 Component 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.picImage = new System.Windows.Forms.PictureBox();
33 this.lblText = new System.Windows.Forms.Label();
34 this.panel1 = new System.Windows.Forms.Panel();
35 this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
36 ((System.ComponentModel.ISupportInitialize)(this.picImage)).BeginInit();
37 this.panel1.SuspendLayout();
38 this.SuspendLayout();
39 //
40 // picImage
41 //
42 this.picImage.Dock = System.Windows.Forms.DockStyle.Fill;
43 this.picImage.Location = new System.Drawing.Point(0, 0);
44 this.picImage.Name = "picImage";
45 this.picImage.Size = new System.Drawing.Size(64, 49);
46 this.picImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
47 this.picImage.TabIndex = 0;
48 this.picImage.TabStop = false;
49 this.picImage.Click += new System.EventHandler(this.picImage_Click);
50 //
51 // lblText
52 //
53 this.lblText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
54 | System.Windows.Forms.AnchorStyles.Right)));
55 this.lblText.AutoSize = true;
56 this.lblText.Location = new System.Drawing.Point(14, 0);
57 this.lblText.Name = "lblText";
58 this.lblText.Size = new System.Drawing.Size(35, 13);
59 this.lblText.TabIndex = 1;
60 this.lblText.Text = "label1";
61 this.lblText.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
62 this.lblText.Click += new System.EventHandler(this.lblText_Click);
63 //
64 // panel1
65 //
66 this.panel1.Controls.Add(this.lblText);
67 this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
68 this.panel1.Location = new System.Drawing.Point(0, 49);
69 this.panel1.Name = "panel1";
70 this.panel1.Size = new System.Drawing.Size(64, 15);
71 this.panel1.TabIndex = 2;
72 //
73 // ThemeButton
74 //
75 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
76 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
77 this.Controls.Add(this.picImage);
78 this.Controls.Add(this.panel1);
79 this.Margin = new System.Windows.Forms.Padding(10);
80 this.Name = "ThemeButton";
81 this.Size = new System.Drawing.Size(64, 64);
82 this.Click += new System.EventHandler(this.ThemeButton_Click);
83 ((System.ComponentModel.ISupportInitialize)(this.picImage)).EndInit();
84 this.panel1.ResumeLayout(false);
85 this.panel1.PerformLayout();
86 this.ResumeLayout(false);
87
88 }
89
90 #endregion
91
92 private System.Windows.Forms.PictureBox picImage;
93 private System.Windows.Forms.Label lblText;
94 private System.Windows.Forms.Panel panel1;
95 private System.Windows.Forms.ToolTip toolTip1;
96 }
97 }