Click here to Skip to main content
15,884,388 members
Articles / Desktop Programming / Windows Forms

BizDraw framework for .NET

Rate me:
Please Sign up or sign in to vote.
4.80/5 (21 votes)
30 May 20075 min read 127.8K   3.2K   102  
A small framework to design and print documents containing shapes, text, images, bar codes...
using System;
using System.Windows.Forms;
using System.Drawing;
using System.Runtime.Serialization;
namespace BizDraw.Objects
{
    [System.Runtime.InteropServices.ComVisible(true)]
    [Serializable()]
	/// <summary>
	/// Ellipse graphic object
	/// </summary>
	public class DrawEllipse : BizDraw.Objects.DrawRectangle, ISerializable
	{
		public DrawEllipse()
		{
            SetRectangle(0, 0, 1, 1);
            Initialize();
		}

        public override BizDraw.Objects.Editors.IDrawObjectEditor GetEditor()
        {
            Editors.FrmRectangleEditor editor = new  Editors.FrmRectangleEditor();
            editor.Text = "Ellipse";
            return editor;
        }
        public DrawEllipse(int x, int y, int width, int height)
        {
            Rectangle = new Rectangle(x, y, width, height);
            Initialize();
        }

        public override void Draw(Graphics g)
        {
            Pen pen = new Pen(Color, PenWidth);

            g.DrawEllipse(pen, DrawRectangle.GetNormalizedRectangle(Rectangle));

            pen.Dispose();
        }

        #region ISerializable Members

        void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
        {
            base.GetObjectData(info, context);
        }
        public DrawEllipse(SerializationInfo info, StreamingContext context) : base(info, context)
        {
        }

        #endregion
    }
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
France France
MCSD Asp.Net certified developer

Comments and Discussions