Click here to Skip to main content
15,893,814 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.9K   1.1K   6  
A head start for App Innovation contestants
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace RedCell.Windows.Forms.Metro
{
    /// <summary>
    /// Class Tab
    /// </summary>
    public class Tab
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="Tab" /> class.
        /// </summary>
        /// <param name="button">The button.</param>
        /// <param name="panel">The panel.</param>
        public Tab(TabButton button, TabPanel panel)
        {
            Button = button;
            Panel = panel;
        }

        /// <summary>
        /// Gets the button.
        /// </summary>
        /// <value>The button.</value>
        public TabButton Button { get; private set; }

        /// <summary>
        /// Gets the panel.
        /// </summary>
        /// <value>The panel.</value>
        public TabPanel Panel { get; private set; }
    }
}

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