UpdateButtonAppBar.cs CampusAppWP8::Utility::Lui::Button::UpdateButtonAppBar CampusAppWP8::Utility::Lui::Button //----------------------------------------------------------------------- //<copyrightfile="UpdateButtonAppBar.cs"company="BTU/IIT"> //TheMITLicense(MIT).Copyright(c)2013BTU/IIT. //</copyright> //<author>Stubbfel</author> //<date>15.10.2013</date> //<summary>Implementstheupdatebuttonapplicationbarclass</summary> //----------------------------------------------------------------------- namespaceCampusAppWP8.Utility.Lui.Button { usingSystem; usingCampusAppWP8.Resources; usingMicrosoft.Phone.Shell; publicclassUpdateButtonAppBar:ApplicationBarIconButton { #regionMembers privatestaticUriiconUri=newUri(Icons.Update,UriKind.Relative); privatestaticstringtext=AppResources.UpdateBtn; #endregion #regionConstructors publicUpdateButtonAppBar() :base() { this.IconUri=UpdateButtonAppBar.iconUri; this.Text=UpdateButtonAppBar.text; } #endregion } }