I am adding like this content view which is having its own view model.I want to handle its visibility from view model of content page.
<ContentPage>
<local:ContentView1 IsVisible="{Binding IsContentViewVisible}"/>
</ContentPage>
Here is page's view model binding for content view's hiding and showing public bool IsContentViewVisible{get;set;} and then i am using it by giving true or false. I am using Fody so there is no need of INotifyPropertyChanged I assume.