Component (similar to trackbar) to enter a range of values
问题 I need a component for entering ranges. I was thinking along the lines of a trackbar with two markers. Are there "native Delphi" components that are meant for this purpose or that can simulate it easily? 回答1: I got a few minutes over and wrote this: unit RangeSelector; interface uses SysUtils, Windows, Messages, Graphics, Classes, Controls, UxTheme, Dialogs; type TRangeSelectorState = (rssNormal, rssDisabled, rssThumb1Hover, rssThumb1Down, rssThumb2Hover, rssThumb2Down, rssBlockHover,