I have a problem when I try to bind the \"Enabled\" property of my Android Button to a Boolean of my ViewModel using the MvvmCross framework and I really don\'t know the ori
I think what you are seeing here is some interaction between ICommand.CanExecute
and the Enabled
property. There's a discussion about this on https://github.com/MvvmCross/MvvmCross/issues/729
To work around this, try switching the binding to:
local:MvxBind="Click ShowProjectPicturesCommand;Enabled HasPicture"
(Also note that the separator in bindings is a ;
- not a ,
)