Click here to Skip to main content
15,886,806 members
Articles / Programming Languages / Visual Basic

AGE, Another Graphic Engine in .NET

Rate me:
Please Sign up or sign in to vote.
4.96/5 (36 votes)
10 May 2007CPOL8 min read 136K   5.9K   170  
A library that allows some GDI+ manipulation at runtime in an easy way
/////////////////////////////////////////////////////////////////////////////////
// MyNeoReport Designer
// --------------------
// Project Copyright (C)    : Fabio Zanetta, email: support@neodatatype.net
// Portions Copyright (C)   : Microsoft Corporation. All Rights Reserved.
// License                  : docs/license.txt
// ------------------------------------------------------------------------------
// File created by          : Fabio Zanetta, email: support@neodatatype.net
// ------------------------------------------------------------------------------
// Please, if you modify some parts of this file mark them as described in
// docs/modify_guidelines.txt
/////////////////////////////////////////////////////////////////////////////////

using System.Drawing;
using NeoDataType.Documents;
using NeoDataType.Graphic;


namespace NeoDataType.Graphic.Christmas
{

    [SaveThisClass]
    public class Gift : GraphicItem
    {

        Color _ribbonColor = Color.Green;
        Color _foreColor = Color.Red;
        Color _backColor = Color.Orange;

        [SaveThisProperty(typeof(ColorFormatter))]
        public Color BackColor
        {
            get { return _backColor; }
            set { _backColor = value; }
        }

        [SaveThisProperty(typeof(ColorFormatter))]
        public Color RibbonColor
        {
            get { return _ribbonColor ; }
            set { _ribbonColor = value; }
        }

	    [SaveThisProperty(typeof(ColorFormatter))]
        public Color ForeColor
        {
            get{ return _foreColor; }
            set{ _foreColor = value; }
        }

        public Gift()
        {
            AntiAlias = true;
            Painter = new GiftPainter();
        }

    }
}

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
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions