Click here to Skip to main content
15,892,059 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.8K   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
{
    partial class frmMain
    {
        /// <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.btnIconOverlays = new System.Windows.Forms.Button();
            this.btnProgressbar = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.btnJumpLists = new System.Windows.Forms.Button();
            this.btnThumbnailToolbars = new System.Windows.Forms.Button();
            this.button1 = new System.Windows.Forms.Button();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // btnIconOverlays
            // 
            this.btnIconOverlays.Location = new System.Drawing.Point(6, 67);
            this.btnIconOverlays.Name = "btnIconOverlays";
            this.btnIconOverlays.Size = new System.Drawing.Size(136, 42);
            this.btnIconOverlays.TabIndex = 3;
            this.btnIconOverlays.Text = "IconOverlays";
            this.btnIconOverlays.UseVisualStyleBackColor = true;
            this.btnIconOverlays.Click += new System.EventHandler(this.btnIconOverlays_Click);
            // 
            // btnProgressbar
            // 
            this.btnProgressbar.Location = new System.Drawing.Point(6, 19);
            this.btnProgressbar.Name = "btnProgressbar";
            this.btnProgressbar.Size = new System.Drawing.Size(136, 42);
            this.btnProgressbar.TabIndex = 2;
            this.btnProgressbar.Text = "Progressbar";
            this.btnProgressbar.UseVisualStyleBackColor = true;
            this.btnProgressbar.Click += new System.EventHandler(this.btnProgressbar_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.btnThumbnailToolbars);
            this.groupBox1.Controls.Add(this.btnJumpLists);
            this.groupBox1.Controls.Add(this.btnIconOverlays);
            this.groupBox1.Controls.Add(this.btnProgressbar);
            this.groupBox1.Location = new System.Drawing.Point(12, 12);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(155, 220);
            this.groupBox1.TabIndex = 4;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Taskbar";
            // 
            // btnJumpLists
            // 
            this.btnJumpLists.Location = new System.Drawing.Point(6, 115);
            this.btnJumpLists.Name = "btnJumpLists";
            this.btnJumpLists.Size = new System.Drawing.Size(136, 42);
            this.btnJumpLists.TabIndex = 4;
            this.btnJumpLists.Text = "Jump Lists";
            this.btnJumpLists.UseVisualStyleBackColor = true;
            this.btnJumpLists.Click += new System.EventHandler(this.btnJumpLists_Click);
            // 
            // btnThumbnailToolbars
            // 
            this.btnThumbnailToolbars.Location = new System.Drawing.Point(6, 163);
            this.btnThumbnailToolbars.Name = "btnThumbnailToolbars";
            this.btnThumbnailToolbars.Size = new System.Drawing.Size(136, 42);
            this.btnThumbnailToolbars.TabIndex = 5;
            this.btnThumbnailToolbars.Text = "Thumbnail Toolbars";
            this.btnThumbnailToolbars.UseVisualStyleBackColor = true;
            this.btnThumbnailToolbars.Click += new System.EventHandler(this.btnThumbnailToolbars_Click);
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(173, 31);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(136, 42);
            this.button1.TabIndex = 6;
            this.button1.Text = "NetworkManagment";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // frmMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(508, 328);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.groupBox1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.Name = "frmMain";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Windows 7 Features";
            this.groupBox1.ResumeLayout(false);
            this.ResumeLayout(false);

        }

        #endregion

        internal System.Windows.Forms.Button btnIconOverlays;
        internal System.Windows.Forms.Button btnProgressbar;
        private System.Windows.Forms.GroupBox groupBox1;
        internal System.Windows.Forms.Button btnJumpLists;
        internal System.Windows.Forms.Button btnThumbnailToolbars;
        internal System.Windows.Forms.Button button1;
    }
}

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