InterviewSolution
Saved Bookmarks
| 1. |
What is use of ICommand in xamarin forms? |
|
Answer» ICommand is a PROPERTY in a ViewModel that is used to access the COMMAND interface. For this, a ViewModel must REFER a CLASS that can implement the ICommand interface. When used with Windows Class, it ALLOWS you to share your ViewModels between Xamarin.Forms and Windows App. |
|