Hi I had defined Property in My BookViewVM
private Visibility _isLoaderPageView = Visibility.Hidden; public Visibility IsLoaderPageView { get { return _isLoaderPageView; } set { _isLoaderPageView = value; RaisePropertyChanged("IsLoaderPageView"); } } I am calling this bookViewVM on Page.xaml page but on Page.xaml some other PageViewVM had already bind But I have to call the BookViewVM Property:
<views:LoadingAnimation x:Name="ldrControl" Margin="100,100,100,150" Visibility="{Binding IsLoaderPageView}" /> I am able to access this BookViewVM Property on My Pageview.xaml.cs code Like this: ETBApp.MainVM.BookVM.IsLoaderPageView
But I have to call this from Property binding on page. please tell me how to bind it.
Both ViewModel like BookViewVm and PageViewVm on same namesapce.