If you derive your own component from TSplitter,
you could try a couple of things:
- Override MouseDown, measuring the time
interval between clicks using GetTickCount()
to trigger a custom event handler.
- Override TControl::DblClick, with csDoubleClicks
included in ControlStyle.
BTW, responding to a double-click would be
a pretty unusual feature in a splitter.