- Importing namespaces in XAML is different in .Net Metro applications compared with WPF. The difference is subtle and caught me unawares… - In WPF, one imports a namespace using. - 1<Grid xmlns:Core\="clr-namespace:Namespace;Assembly=AssemblyName"- This has changed to : - 1<Gridxmlns:Core\="using:Namespace” …
 Read More
- This post is part of a series of ‘Lessons Learnt’ from a recent conversion of Microsoft.Practices.Prism to Net Metro Prism. See here for related posts - I got stumped on an issue with delegates whilst converting Prism to Metro … In metro, A System.Delegate type doesn’t have a Method property. How can that be!? … 
 Read More
- This post is part of a series of ‘Lessons Learnt’ from a recent conversion of Microsoft.Practices.Prism to Net Metro Prism. See here for related posts - Where is Type.GetTypeInfo()!? - Most members from the System.Type class have been moved to the System.Reflection.TypeInfo class. All the documentation suggests you can … 
 Read More
- The exe and assemblies can be found under C:\Program Files\WindowsApps (need to add permissions to view folder) - Deployed Metro apps access application settings and runtime state information in C:\Users\ - \AppData\Local\Packages - The appxmanifest.xml can be found under C:\ProgramData\Microsoft\Windows\AppRepository … 
 Read More
- This post is part of a series of ‘Lessons Learnt’ from a recent conversion of Microsoft.Practices.Prism to Net Metro Prism. See here for related posts - In Metro there is a whole new improved mechanism for dealing with resources and localization. Its quite powerful; allowing one to embed text, images and even … 
 Read More
- I recently converted Prism to work with .Net for Metro Style Apps. - You can get the project on codeplex at http://metroprism.codeplex.com/ - Its a pragmatic conversion; but keeps most of the existing functionality that you get in Prism 4.1 apart from features that don’t naturally work within Metro (such as reflectively … 
 Read More