Click here to Skip to main content
15,881,413 members
Articles / Programming Languages / XML

Is Code Complete?

Rate me:
Please Sign up or sign in to vote.
4.86/5 (77 votes)
11 Nov 2018CPOL9 min read 106.1K   357   221  
Design principles to be followed in software development
using System.Drawing;
using System.Windows.Forms;

namespace SRP
{
    public partial class SRP : Form
    {
        /// <summary>
        /// 
        /// </summary>
        public SRP()
        {
            InitializeComponent();
        }

        /// <summary>
        /// 
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void ShapeToolStrip_ItemClicked(object sender, ToolStripItemClickedEventArgs e)
        {
            IShape shape = null;
            Rectangle rect = Rectangle.Empty;
            switch (e.ClickedItem.ToString().ToUpper()) 
            {
                case "RECTANGLE":
                     shape = new RectangleOperations();
                    break;

                case "SQUARE":
                    shape = new SquareOperations();
                    break;
            }

            if (shape != null)
            {
                rect = shape.CalculateDimension(this);
                shape.DrawShape(rect,this);
            }
        }
    }
}

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

Comments and Discussions