Click here to Skip to main content
15,896,269 members
Articles / Desktop Programming / WPF

WPF Version of IPMessager

Rate me:
Please Sign up or sign in to vote.
4.87/5 (10 votes)
27 Feb 2010CPOL2 min read 44.2K   2.7K   55  
Redeveloped the IPMessager program using C# and WPF
using System;
using System.Collections.Generic;
using System.Text;

namespace QiHe.CodeLib
{
    public enum MessageType { Info, Error, Warnning }

    public abstract class Logger
    {
        public abstract void Log(MessageType msgType, string text);

        public abstract string Messages { get; }

        public abstract void Clear();

        public virtual void Info(string text)
        {
            Log(MessageType.Info, text);
        }

        public virtual void Error(string text)
        {
            Log(MessageType.Error, text);
        }

        public virtual void Warnning(string text)
        {
            Log(MessageType.Warnning, text);
        }
    }
}

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

Comments and Discussions