18 lines
		
	
	
		
			436 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			436 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Text;
 | 
						|
 | 
						|
namespace DevComponents.DotNetBar
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Represents painter for the MdiSystemItem.
 | 
						|
    /// </summary>
 | 
						|
    internal class MdiSystemItemPainter
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Paints MdiSystemItem.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="e">Provides arguments for the operation.</param>
 | 
						|
        public virtual void Paint(MdiSystemItemRendererEventArgs e) { }
 | 
						|
    }
 | 
						|
}
 |