Click here to Skip to main content
15,878,814 members
Articles / Programming Languages / C#

Dealing with Progressive Operations

Rate me:
Please Sign up or sign in to vote.
4.92/5 (26 votes)
10 May 2010CPOL30 min read 37.7K   318   60  
Through a clean OOP solution to deal with progressive operations, I will implicitly show you how OOP principles can work together to make a full, clean solution.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Erik.Utilities.Interfaces;

namespace Erik.Utilities.WinFormsUI
{
    public partial class frmModalCompositeProgressForm : Form
    {
        public frmModalCompositeProgressForm(
            ICompositeProgressiveOperation operation)
        {
            InitializeComponent();

            // Subscribe to operation events
            operation.NewOperation += (sender, e) =>
                {
                    lblCurrentComponent.Text =
                        operation.CurrentOperation.MainTitle;

                    Refresh();
                };

            operation.OperationStart += (sender, e) =>
                {
                    lblTitle.Text = operation.MainTitle;
                    lblSubtitle.Text = operation.SubTitle;

                    Refresh();
                };

            operation.OperationProgress += (sender, e) =>
                {
                    pgbOverallProgress.Value = operation.CurrentProgress;
                    pgbCurrentProgress.Value = operation.CurrentOperation.CurrentProgress;

                    Application.DoEvents();
                };

            operation.OperationEnd += (sender, e) => Close();

            // Subscribe to Shown event of the form
            Shown += (sender, e) => operation.Start();
        }
    }
}

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

Comments and Discussions