Click here to Skip to main content
15,885,309 members
Articles / Multimedia / GDI+

C# Visual Card Designer Application with File Serialziation and Text, Shape, Image Manipulations and GDI+

Rate me:
Please Sign up or sign in to vote.
3.12/5 (10 votes)
24 Aug 2008CPOL1 min read 51.9K   2.9K   18  
C# Visual Card Designer Application with File Serialziation and Text, Shape, Image Manipulations and GDI+
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
using KCards.GraphicalControls;

namespace KCards
{
    public partial class KCardShape : KShape, ICardControl
    {
        public KCardShape()
        {
            InitializeComponent();
        }
        private int m_Order;
        public int Order
        {
            get { return m_Order; }
            set { m_Order = value; }
        }
        //icardconrol
        private int m_IndexOnCard;
        public int IndexOnCard
        {
            get { return m_IndexOnCard; }
            set { m_IndexOnCard = value; }
        }
        private bool m_NeedSendToBack;
        public bool NeedSendToBack
        {
            get { return m_NeedSendToBack; }
            set { m_NeedSendToBack = value; }
        }
       // protected override void OnPaintBackground(PaintEventArgs pevent)
       // {
            //do not allow the background to be painted  
//            pevent.Graphics.Clear(Color.Transparent);
      //  }
        
    }
}

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
India India
I started programming for fun when I was in Higher Secondary (1995). It was a table writing program in C..haah!! those were the best days of my life Smile | :)

But now it has brought me to no. of jobs in roles of developer, Lead, Architect, Coach and Consultant....

.Net c# is my passion specially when it comes to build api and frameworks to facilitates development teams....

I always learned things by example, now its a pleasure and responsiblity to give learnings back to next generation of coders.

Comments and Discussions