Home > Blockchain >  How to bind two xaml and xaml.cs files to one ViewModel using xamarin.forms?
How to bind two xaml and xaml.cs files to one ViewModel using xamarin.forms?

Time:08-25

I was wondering whether there is a way I could bind two xaml files to one viewmodel in order to allow data binding from one viewmodel to two xaml files.

CodePudding user response:

That's really easy actually,

SomePage somePage = new SomePage(); //View 1 
SomeOtherPage otherPage= new SomeOtherPage();  // View 2
YourCommonViewModel commonVm = new YourCommonViewModel(); //Common VM

somePage.BindingContext = commonVm;
otherPage.BindingContext= commonVm;

Hope this helps

  • Related