Click here to Skip to main content
15,892,161 members
Articles / Programming Languages / C#

An Application to Create Interesting and Fully Customizable Web Photo Gallery

Rate me:
Please Sign up or sign in to vote.
4.47/5 (16 votes)
4 Apr 2007LGPL32 min read 55.9K   4.6K   81  
An application to create interesting and fully customizable Web photo gallery using plugins for generating pages
using System;
using System.Collections.Generic;
using System.Text;

namespace Common
{
    [Serializable]
    public class CParams
    {
        
        public CParams()
        {

        }

        public int MainWidth;
        public int MainHeight;
        public int ThumbWidth;
        public int ThumbHeight;

        public string filenamecomplete;
        public string filename;
        public string extension;
        public string pagedescription;
        public string mainpageurl;  // internal for plugin page gen

        public enum ThreadOperation
        {
            Suspend,
            Resume,
            Abort
        }
    }
}

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 GNU Lesser General Public License (LGPLv3)


Written By
Web Developer
Italy Italy
I'm an electronic engeneer form Genoa.
I like very much dotnet and C#. I've developed some works like an html gallery generator, a graphic formula viewer (user defined), a webcam grabber and html gallery generator, a little framework for image processing, an image resizer, elaboration in batch and some other application tool.
Actually I'm working in VC++ 6 MFC, but I hope that my future is .net !!!
Some of my works are downloadable at:
http://www.solchiere.it
Lorenzo Banderali

Comments and Discussions