Click here to Skip to main content
15,884,099 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.9K   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.Linq;
using System.Text;
using System.Windows.Forms;
using Erik.Utilities.WinFormsUI;
using Erik.Utilities.Interfaces;

namespace Erik.Utilities
{
    public static class Lib
    {
        public static void StartProgressiveOperation(
            IProgressiveOperation operation,
            IWin32Window owner)
        {
            frmModalProgressForm f = 
                new frmModalProgressForm(operation);

            f.ShowDialog(owner);
        }

        public static void StartProgressiveOperation(
        ICompositeProgressiveOperation operation,
        IWin32Window owner)
        {
            frmModalCompositeProgressForm f =
                new frmModalCompositeProgressForm(operation);

            f.ShowDialog(owner);
        }
    }
}

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