1

我正在尝试在启用和禁用属性的情况下操作我的应用程序栏中的按钮,但每次我遇到异常时都告诉我系统访问冲突!关于发生了什么的任何想法

 <phone:PhoneApplicationPage.ApplicationBar >
    <shell:ApplicationBar IsMenuEnabled="True" BackgroundColor="#989898"    ForegroundColor="White">
        <shell:ApplicationBarIconButton IconUri="/Images/APPBAR/Mes-infos-personnelles copie.png" x:Name="Profile_Button" IsEnabled="True" Text="Profile" />

        <shell:ApplicationBar.MenuItems>
            <shell:ApplicationBarMenuItem   Text="Box" />

        </shell:ApplicationBar.MenuItems>

    </shell:ApplicationBar>
</phone:PhoneApplicationPage.ApplicationBar>

在我后面的代码中:

Profile_Button.IsEnabled = false;//exception here 
4

1 回答 1

0

尝试这个

((ApplicationBarIconButton) ApplicationBar.Buttons[0]).IsEnabled = false; // disables Profile_Button button

//禁用应用栏中的所有按钮和菜单项

  foreach (var button in ApplicationBar.Buttons)
       {
           ((ApplicationBarIconButton) button).IsEnabled = false;
       }

       //To prevent the menu from opening you have to use this code:
       ApplicationBar.IsMenuEnabled = false;
于 2014-03-05T13:43:26.053 回答