Click here to Skip to main content
15,891,943 members
Articles / Multimedia / GDI+

Customizable Tree Control with Animation Support

Rate me:
Please Sign up or sign in to vote.
4.72/5 (17 votes)
8 Apr 2008CPOL4 min read 108K   23   115  
A tree control implementation, allowing complete customization and animation support
/////////////////////////////////////////////////////////////////////////////
//
// (c) 2007 BinaryComponents Ltd.  All Rights Reserved.
//
// http://www.binarycomponents.com/
//
/////////////////////////////////////////////////////////////////////////////

using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.Windows.Forms;
using BinaryComponents.WinFormsGloss.Controls.Ribbon;

namespace BinaryComponents.WinFormsGloss.Commands
{
	public class CommandAnimatedRibbonButtonItem : CommandRibbonButtonItem
	{
		public CommandAnimatedRibbonButtonItem( string text, Icon icon16, Icon icon24 )
			: base( text, icon16, icon24 )
		{
		}

		public void StartAnimating( WinFormsUtility.Drawing.Animation animation )
		{
			_animation = animation;
			_start = DateTime.Now;
			StartTimer();
		}

		public void StopAnimating()
		{
			_animation = null;
			StopTimer();
		}

		public override void Paint( WinFormsGloss.Controls.Ribbon.Context context, Rectangle clip, Rectangle logicalBounds )
		{
			base.Paint( context, clip, logicalBounds );

			_updates = context.Updates;

			double seconds = DateTime.Now.Subtract( _start ).TotalSeconds;

			if( _animation != null )
			{
				_animation.OnPaint( context.Graphics, logicalBounds, true, seconds );
			}
		}

		private void StartTimer()
		{
			if( _updateTimer == null )
			{
				_updateTimer = new Timer();
				_updateTimer.Interval = 100;
				_updateTimer.Tick += new EventHandler( _updateTimer_Tick );
				_updateTimer.Start();
			}
		}

		private void StopTimer()
		{
			if( _updateTimer != null )
			{
				_updateTimer.Tick -= new EventHandler( _updateTimer_Tick );
				_updateTimer.Dispose();
				_updateTimer = null;
			}

			if( _updates != null )
			{
				_updates.NeedsUpdate( this );
			}
		}

		private void _updateTimer_Tick( object sender, EventArgs e )
		{
			if( _updates != null )
			{
				_updates.NeedsUpdate( this );
			}
		}

		private WinFormsUtility.Drawing.Animation _animation;
		private DateTime _start;
		private Timer _updateTimer;
		private Updates _updates;
	}
}

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
Web Developer
United Kingdom United Kingdom
I'm currently working for a small start-up company, BinaryComponents Ltd, producing the FeedGhost RSS reader.

FeedGhost RSS Reader:
http://www.feedghost.com

Bespoke Software Development
http://www.binarycomponents.com

Comments and Discussions