windows phone 8 - How to Display Text in SystemTray -


first off, possible, , how. i've seen microsoft apps, such bing weather app, systemtray displayed without progress indicator moving. i'd implement same, , able toggle whether progress indicator on or off when required. how might implement sort of feature?

here's how:

progressindicator progress = new progressindicator {     isvisible = true,     isindeterminate = true,     text = "downloading details..." }; systemtray.setprogressindicator(this, progress); 

Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -