Click here to Skip to main content
15,881,882 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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Text;

namespace RedCell.Windows.Forms.Metro
{
    /// <summary>
    /// A tab panel
    /// </summary>
    public partial class TabPanel : UserControl
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="TabPanel" /> class.
        /// </summary>
        public TabPanel()
        {
            InitializeComponent();
        }
    }
}

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