Click here to Skip to main content
15,886,798 members
Articles / Desktop Programming / Windows Forms

ButtonBar Control using .NET

Rate me:
Please Sign up or sign in to vote.
4.95/5 (43 votes)
3 Dec 2009CPOL5 min read 64.5K   5.5K   104  
Themed ButtonBar control supporting custom draw with full Designer support
using ButtonBarsControl.Control;
using ButtonBarsControl.Design.Enums;

namespace ButtonBarsControl.Design.Entity
{
    /// <summary>
    /// Represents class holding information relatedd to hittest.
    /// </summary>
    public class HitTestInfo
    {
        private readonly HitArea area;
        private readonly int buttonIndex;

        /// <summary>
        /// Initializes a new instance of the <see cref="HitTestInfo"/> class. 
        /// </summary>
        /// <param name="buttonIndex">Index of button</param>
        /// <param name="area"><see cref="HitArea"/> representing what was hit area of a given point.</param>
        public HitTestInfo(int buttonIndex, HitArea area)
        {
            this.buttonIndex = buttonIndex;
            this.area = area;
        }

        /// <summary>
        /// Initializes a new instance of the <see cref="HitTestInfo"/> class. 
        /// </summary>
        /// <param name="area"><see cref="HitArea"/> representing what was hit area of a given point.</param>
        public HitTestInfo(HitArea area)
        {
            buttonIndex = -1;
            this.area = area;
        }

        /// <summary>
        /// Gets Index of <see cref="BarItem"/> in <see cref="ButtonBar"/> as per hitest result. Returs -1 if there is no button at given point.
        /// </summary>
        public int ButtonIndex
        {
            get { return buttonIndex; }
        }

        /// <summary>
        /// <see cref="HitArea"/> representing what was hit area of a given point.
        /// </summary>
        public HitArea Area
        {
            get { return area; }
        }
    }
}

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

Comments and Discussions