is there any way we can bind or use the app version and other assembly info in Xaml in windows 8?
Asked
Active
Viewed 714 times
1 Answers
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
-
can't we bind these info directly to xaml. i.e. with no code behind. – Ankit Mar 06 '13 at 06:23