I have been building my first app over the past week or so, and I believe that I have come across a bug.
Background: I saw a tip online to set the Reset property of controls to ButtonControl.Pressed to cause the control to reset itself whenever that button is pressed, and it worked really well.
Today I read that you could use the Select function to trigger a control's OnSelect property. It does trigger it, but it doesn't cause the controls with the modified Reset property to reset. Only physically pressing the button causes that to happen. I ended up just changing the OnSelect property of the button to call Reset() for the controls and removed their Reset property.
Is this a bug or intended to work like this?