namespace OpacitySample { partial class MainForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// protected override void Dispose(bool disposing) { if( disposing && ( components != null ) ) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.timer = new System.Windows.Forms.Timer(this.components); this.label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // timer // this.timer.Tick += new System.EventHandler(this.timer_Tick); // // label1 // this.label1.Dock = System.Windows.Forms.DockStyle.Fill; this.label1.Location = new System.Drawing.Point(0, 0); this.label1.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(225, 63); this.label1.TabIndex = 0; this.label1.Text = "Click On Me!"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(225, 63); this.Controls.Add(this.label1); this.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Margin = new System.Windows.Forms.Padding(5, 5, 5, 5); this.Name = "MainForm"; this.Opacity = 0.5; this.Text = "Opacity = 0.5"; this.TopMost = true; this.Deactivate += new System.EventHandler(this.MainForm_Deactivate); this.Activated += new System.EventHandler(this.MainForm_Activated); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Timer timer; private System.Windows.Forms.Label label1; } }