41 lines
		
	
	
		
			848 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			848 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#if FRAMEWORK20
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Text;
 | 
						|
 | 
						|
namespace DevComponents.Editors.DateTimeAdv
 | 
						|
{
 | 
						|
    public class NumericMinuteInput : VisualIntegerInput, IDateTimePartInput
 | 
						|
    {
 | 
						|
        #region Private Variables
 | 
						|
        #endregion
 | 
						|
 | 
						|
        #region Events
 | 
						|
        #endregion
 | 
						|
 | 
						|
        #region Constructor
 | 
						|
        /// <summary>
 | 
						|
        /// Initializes a new instance of the NumericMinuteInput class.
 | 
						|
        /// </summary>
 | 
						|
        public NumericMinuteInput()
 | 
						|
        {
 | 
						|
            this.MinValue = 0;
 | 
						|
            this.MaxValue = 59;
 | 
						|
        }
 | 
						|
        #endregion
 | 
						|
 | 
						|
        #region Internal Implementation
 | 
						|
        #endregion
 | 
						|
 | 
						|
        #region IDateTimePartInput Members
 | 
						|
        eDateTimePart IDateTimePartInput.Part
 | 
						|
        {
 | 
						|
            get { return eDateTimePart.Minute; }
 | 
						|
        }
 | 
						|
 | 
						|
        #endregion
 | 
						|
    }
 | 
						|
}
 | 
						|
#endif
 | 
						|
 |