I have one custom object in my ViewModel.I want to bind only one of its member to textview in my droid view.
I want to bind only string member of that object to textview Currently I am doing this.
local:MvxBind = "Text Myobject.ItsMember"
Is it ok? Or am I wrong?
Or Can I do Like this?
local:MvxBind = "ItemsSource MyObject ; Text ItsMember"
How can I achieve this?