Click here to Skip to main content
15,892,746 members
Articles / Multimedia / GDI+

Industrial Controls 2

Rate me:
Please Sign up or sign in to vote.
4.92/5 (135 votes)
21 Feb 2010CPOL10 min read 241.4K   29.9K   364  
A library of controls with a custon renderer for use in the controls processes panel display
/*---------------------------------------------------------------------------
 * File: Renderer.cs
 * Utente: lucabonotto
 * Date: 05/04/2009
 *-------------------------------------------------------------------------*/

using System;
using System.Drawing;

namespace LBSoft.IndustrialCtrls.Base
{
	/// <summary>
	/// Renderer interface for all
    /// LBSoft.IndustrialCtrls renderer
	/// </summary>
    public interface ILBRenderer : IDisposable
	{
		object Control
		{
			set;
			get;
		}
		bool Update	();
		void Draw	( Graphics Gr );
	}
}

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) Promax Srl
Italy Italy
Software developer with over 16 years of experience, specializing on MFC/C++, C# and software architecture


Company : Promax S.r.l.


Comments and Discussions