namespace CustomScrollBar { /// /// The scrollbar arrow button states. /// internal enum ScrollBarArrowButtonState { /// /// Indicates the up arrow is in normal state. /// UpNormal, /// /// Indicates the up arrow is in hot state. /// UpHot, /// /// Indicates the up arrow is in active state. /// UpActive, /// /// Indicates the up arrow is in pressed state. /// UpPressed, /// /// Indicates the up arrow is in disabled state. /// UpDisabled, /// /// Indicates the down arrow is in normal state. /// DownNormal, /// /// Indicates the down arrow is in hot state. /// DownHot, /// /// Indicates the down arrow is in active state. /// DownActive, /// /// Indicates the down arrow is in pressed state. /// DownPressed, /// /// Indicates the down arrow is in disabled state. /// DownDisabled } }