Click here to Skip to main content
15,891,993 members
Articles / Programming Languages / C# 4.0

EasyProgressBarPacket

Rate me:
Please Sign up or sign in to vote.
4.84/5 (42 votes)
18 Nov 2011CPOL4 min read 67K   6.9K   105  
A few progressbar examples with clone support.
using System;

namespace EasyProgressBarPacket
{
    public interface IProgressColorizer : IDisposable
    {
        /// <summary>
        /// Determines whether the colorizer effect is enable or not for progress bitmap.
        /// </summary>
        bool IsColorizerEnabled { get; set; }

        /// <summary>
        /// Determines whether the transparency effect is visible or not for progress bitmap.
        /// </summary>
        bool IsTransparencyEnabled { get; set; }

        /// <summary>
        /// Gets or Sets, the red color component value of the progress bitmap.
        /// </summary>
        byte Red { get; set; }

        /// <summary>
        /// Gets or Sets, the green color component value of the progress bitmap.
        /// </summary>
        byte Green { get; set; }

        /// <summary>
        /// Gets or Sets, the blue color component value of the progress bitmap.
        /// </summary>
        byte Blue { get; set; }

        /// <summary>
        /// Gets or Sets, the alpha color component value of the progress bitmap.
        /// </summary>
        byte Alpha { get; set; }
    }
}

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
Software Developer (Senior) ARELTEK
Turkey Turkey
Since 1998...

MCPD - Enterprise Application Developer

“Hesaplı hareket ettiğini zanneden ve onunla iftihar eyliyen dar kafalar; kurtulmağa, yükselmeğe elverişli hiç bir eser vücüda getirmezler. Kurtuluş ve yükselişi, ancak varlığına dayanan ve mülkü milletin gizli kapalı hazinelerini verimli hale getirmesini bilen, şahsi menfaatini millet menfaati uğruna feda eden, ruhu idealist, dimağı realist şahsiyetlerde aramalıdır.”

Nuri Demirağ, 1947

Comments and Discussions