1

is there any way we can bind or use the app version and other assembly info in Xaml in windows 8?

Charles
  • 50,943
  • 13
  • 104
  • 142
Ankit
  • 6,554
  • 6
  • 49
  • 71

1 Answers1

2

You should use Package Class

So get the package info in your C# code:

var myPackage = Windows.ApplicationModel.Package.Current;

and then display into application using TextBlock or other Control.

Norbert Pisz
  • 3,392
  • 3
  • 27
  • 42