How to Lable Hide and show if admin is login then one label is displayed otherwise label is hidden {How Solve it} ?
xaml Code
IsVisible
="{Binding IsAdminTrue}"> ="is_professional"> ViewModel Codepublic void IsProfessional()
{ if (CurrentUser.IsAdmin!= true) { IsAdminTrue= false; }
else { IsAdminTrue= true; } }

arvind baldaniyaPosted Apr 10, 2017, 8:23 AM
Piyush PansuriyaPosted Apr 10, 2017, 3:46 AM