Click here to Skip to main content
15,879,034 members
Articles / Mobile Apps / Windows Mobile

.NET CF Custom DataGrid Formatting

Rate me:
Please Sign up or sign in to vote.
4.80/5 (16 votes)
29 Aug 2007CPOL4 min read 92.2K   3.4K   78  
This article shows you how to customize individual cells in a DataGrid - and it works on the Compact Framework.
using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace GridSample
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [MTAThread]
        static void Main()
        {
            Application.Run(new Form1());
        }
    }
}

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
Web Developer
Australia Australia
Steve Hayles is a professional Yacht Racing Navigator by day and a very average developer by night.

He is the founder of GRIB.US a weather data service provider specialising in the delivery of digital weather products.

GRIB.US have recently launched UGRIB - a viewing client utilising their own webservice which provides instant regional forecasts in GRIB format .

GRIB.US have also developed a custom data compression algorithm for GRIB data which outperforms general compression algorithms by 200% and can reduce file sizes to a third of the original size.

Check out http://www.grib.us for more details

Comments and Discussions