So what is my problem? I have a popup , and when I open it, I want to disable the current page in applications for Windows phones. so I do this this.IsEnabled = false; But my ApplicationBar is still available. Of course I try:
ApplicationBar.IsMenuEnabled = false;
My next idea was to do something like this:
for (int i = 0; i < ApplicationBar.MenuItems.Count; i++) { ((ApplicationBarMenuItem)ApplicationBar.Buttons[i]).IsEnabled = false; }
and no result yet. I am sure that some of them are done earlier, can you show me how?
source share