Click here to Skip to main content
15,886,821 members
Articles / Programming Languages / Visual Basic

Windows 7 new features: Step by step in VB.NET and C#

Rate me:
Please Sign up or sign in to vote.
4.85/5 (88 votes)
31 Aug 2010CPOL9 min read 179.3K   4.7K   211  
Explaining all the new must have features in Windows 7 to make your application look shiny and professional, like the new features of the task bar and more.
namespace Win7NewFeatures.Taskbar
{
    partial class frmThumbnailToolbars
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.btnEnaDisB2 = new System.Windows.Forms.Button();
            this.btnSetB2Tolltip = new System.Windows.Forms.Button();
            this.txtTooltip = new System.Windows.Forms.TextBox();
            this.btnHide1 = new System.Windows.Forms.Button();
            this.lblEventsList = new System.Windows.Forms.Label();
            this.EventsList = new System.Windows.Forms.ListBox();
            this.SuspendLayout();
            // 
            // btnEnaDisB2
            // 
            this.btnEnaDisB2.Location = new System.Drawing.Point(12, 245);
            this.btnEnaDisB2.Name = "btnEnaDisB2";
            this.btnEnaDisB2.Size = new System.Drawing.Size(180, 22);
            this.btnEnaDisB2.TabIndex = 11;
            this.btnEnaDisB2.Text = "Enable/Disable button2Button1";
            this.btnEnaDisB2.UseVisualStyleBackColor = true;
            this.btnEnaDisB2.Click += new System.EventHandler(this.btnEnaDisB2_Click);
            // 
            // btnSetB2Tolltip
            // 
            this.btnSetB2Tolltip.Location = new System.Drawing.Point(230, 273);
            this.btnSetB2Tolltip.Name = "btnSetB2Tolltip";
            this.btnSetB2Tolltip.Size = new System.Drawing.Size(40, 20);
            this.btnSetB2Tolltip.TabIndex = 10;
            this.btnSetB2Tolltip.Text = "Set";
            this.btnSetB2Tolltip.UseVisualStyleBackColor = true;
            this.btnSetB2Tolltip.Click += new System.EventHandler(this.btnSetB2Tolltip_Click);
            // 
            // txtTooltip
            // 
            this.txtTooltip.Location = new System.Drawing.Point(12, 273);
            this.txtTooltip.Name = "txtTooltip";
            this.txtTooltip.Size = new System.Drawing.Size(212, 20);
            this.txtTooltip.TabIndex = 9;
            this.txtTooltip.Text = "Enter the tooltip Text for button3";
            // 
            // btnHide1
            // 
            this.btnHide1.Location = new System.Drawing.Point(12, 217);
            this.btnHide1.Name = "btnHide1";
            this.btnHide1.Size = new System.Drawing.Size(180, 22);
            this.btnHide1.TabIndex = 8;
            this.btnHide1.Text = "Hide/Show Button1";
            this.btnHide1.UseVisualStyleBackColor = true;
            this.btnHide1.Click += new System.EventHandler(this.btnHide1_Click);
            // 
            // lblEventsList
            // 
            this.lblEventsList.AutoSize = true;
            this.lblEventsList.Location = new System.Drawing.Point(12, 9);
            this.lblEventsList.Name = "lblEventsList";
            this.lblEventsList.Size = new System.Drawing.Size(56, 13);
            this.lblEventsList.TabIndex = 7;
            this.lblEventsList.Text = "EventsList";
            this.lblEventsList.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // EventsList
            // 
            this.EventsList.FormattingEnabled = true;
            this.EventsList.Location = new System.Drawing.Point(12, 25);
            this.EventsList.Name = "EventsList";
            this.EventsList.Size = new System.Drawing.Size(260, 186);
            this.EventsList.TabIndex = 6;
            // 
            // frmThumbnailToolbars
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(284, 308);
            this.Controls.Add(this.btnEnaDisB2);
            this.Controls.Add(this.btnSetB2Tolltip);
            this.Controls.Add(this.txtTooltip);
            this.Controls.Add(this.btnHide1);
            this.Controls.Add(this.lblEventsList);
            this.Controls.Add(this.EventsList);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.Name = "frmThumbnailToolbars";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "ThumbnailToolbars";
            this.Shown += new System.EventHandler(this.frmThumbnailToolbars_Shown);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        internal System.Windows.Forms.Button btnEnaDisB2;
        internal System.Windows.Forms.Button btnSetB2Tolltip;
        internal System.Windows.Forms.TextBox txtTooltip;
        internal System.Windows.Forms.Button btnHide1;
        internal System.Windows.Forms.Label lblEventsList;
        internal System.Windows.Forms.ListBox EventsList;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer IDS
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions