How do you bind events in Slate (ex. button press)

SAssignNew(Less, SButton)
.Text(FText::FromString(TEXT(" < ")))
.OnPressed(BIND_UOBJECT_DELEGATE(FSimpleDelegate, PressLess))

This doesn’t work and its the only thing I could find looking for examples.