Archive for Settembre 4th, 2007

AJAX Components - Part 2

Settembre 4th, 2007

This week you’ll go through the steps of building an AJAX DataGrid control, which is used to iterate over a list of JavaScript objects. Other topics covered are the behavior component, databinding, templating and the declaration. By David Johnson, Alexei White, and Andre Charland. 0904

Create title

Settembre 4th, 2007

Description: test

Link: http://www.codekeep.net/snippets/153c9d5a-25ec-4203-b079-ba80043f4df2.aspx

using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace WindowsApplication1
{
    static class Program
    {
        /// <summary>
        /// ??????????
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
}