I want to bind a buttons IsEnabled property to (myObject.SelectedIndex >= 0).... isn't there a simple way to do this in the xaml (without having to do crazy things to any underlying objects)? I haven't really seen a good example.
Honestly, I wish this was as easy as Flex 3 ... I.E.:
<mx:Button enabled="{dataGrid.SelectedIndex >= 0}" ...