开发者

Change applicationbar buttonicon at runtime

开发者 https://www.devze.com 2023-01-16 11:48 出处:网络
I\'m developing a WP7 app and the application needs to change the icon of a button on the application bar given the state of a request.

I'm developing a WP7 app and the application needs to change the icon of a button on the application bar given the state of a request. I have tried:

if (App.Servers[index].ServerState == "Enabled")
{
  DetailsAppBar.btnStart.IconUri = new Uri("/AppBar/appbar.stop.rest.png");
}

else
{开发者_如何转开发
  DetailsAppBar.btnStart.IconUri = new Uri("/AppBar/appbar.transport.play.rest.png");
}

This doesn't give me an error in the code, but it can't compile.... any hints to do this is appreciated :)

thanks


ApplicationBar is a special control that does not behave as other Silverlight controls (see Peter Torr's post on the subject). One of the consequences is that names given in XAML to app bar buttons generate fields in code-behind that are always null.

I'm guessing that in your case the btnStart field in DetailsAppBar is set to null, and thus trying to set its IconUri property results in a NullReferenceException being thrown.

To access a button in an application bar, you must instead reference it by its zero-based index in the buttons list. For instance, the code below returns a reference to the third button in the app bar:

button = (IApplicationBarIconButton)ApplicationBar.Buttons[2];


figured it out...

((ApplicationBarIconButton)ApplicationBar.Buttons[2]).IconUri = new Uri("/AppBar/appbar.stop.rest.png",UriKind.Relative);

did the trick :)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号