Click here to Skip to main content
15,885,914 members
Articles / Desktop Programming / Windows Forms

Ebook Shelf

Rate me:
Please Sign up or sign in to vote.
4.50/5 (4 votes)
2 Apr 2011MIT1 min read 34.7K   1.2K   23  
Ebook Shelf works like resource manager
using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace ebook_shelf
{
    static class Program
    {
        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new MainForm());
        }
    }
}

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 MIT License


Written By
Engineer
China China
An individual human existence should be like a river - small at first, narrowly contained within its banks, and rushing passionately past boulders and over waterfalls. Gradually the river grows wider, the banks recede, the waters flow more quietly, and in the end, without any visible break, they become merged in the sea, and painlessly lose their individual being.

Comments and Discussions