Click here to Skip to main content
15,888,521 members
Articles / Programming Languages / C# 4.0

Reading Ultrabook Sensor Data with the Windows 8 Sensor API

Rate me:
Please Sign up or sign in to vote.
5.00/5 (10 votes)
6 Nov 2012CPOL2 min read 29.8K   1.1K   6  
A head start for App Innovation contestants
namespace RedCell.Windows.Forms.Metro
{
    partial class TabControl
    {
        /// <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 Component 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.TabButtonPanel = new RedCell.Windows.Forms.Metro.UserControl();
            this.TabPanelContainer = new RedCell.Windows.Forms.Metro.UserControl();
            this.SuspendLayout();
            // 
            // TabButtonPanel
            // 
            this.TabButtonPanel.BackColor = System.Drawing.SystemColors.ActiveCaption;
            this.TabButtonPanel.Dock = System.Windows.Forms.DockStyle.Left;
            this.TabButtonPanel.Location = new System.Drawing.Point(0, 0);
            this.TabButtonPanel.Name = "TabButtonPanel";
            this.TabButtonPanel.Opacity = 0F;
            this.TabButtonPanel.Size = new System.Drawing.Size(150, 394);
            this.TabButtonPanel.TabIndex = 0;
            // 
            // TabPanelContainer
            // 
            this.TabPanelContainer.BackColor = System.Drawing.SystemColors.ActiveCaption;
            this.TabPanelContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.TabPanelContainer.Location = new System.Drawing.Point(150, 0);
            this.TabPanelContainer.Name = "TabPanelContainer";
            this.TabPanelContainer.Opacity = 0F;
            this.TabPanelContainer.Size = new System.Drawing.Size(390, 394);
            this.TabPanelContainer.TabIndex = 1;
            // 
            // TabControl
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.ButtonFace;
            this.Controls.Add(this.TabPanelContainer);
            this.Controls.Add(this.TabButtonPanel);
            this.Name = "TabControl";
            this.Size = new System.Drawing.Size(540, 394);
            this.ResumeLayout(false);

        }

        #endregion

        /// <summary>
        /// The tab button panel
        /// </summary>
        public UserControl TabButtonPanel;
        /// <summary>
        /// The tab panel container
        /// </summary>
        public UserControl TabPanelContainer;

    }
}

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
Engineer Robotic Assistance Devices / AITX
Canada Canada
Yvan Rodrigues has 30 years of experience in information systems and software development for the industry. He is Senior Concept Designer at Robotic Assistance Devices

He is a Certified Technician (C.Tech.), a professional designation granted by the Institute of Engineering Technology of Ontario (IETO).

Yvan draws on experience as owner of Red Cell Innovation Inc., Mabel's Labels Inc. as Manager of Systems and Development, the University of Waterloo as Information Systems Manager, and OTTO Motors as Senior Systems Engineer and Senior Concept Designer.

Yvan is currently focused on design of embedded systems.

Comments and Discussions