Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I basically need to know how you can pre-compile a XAML based user control into the dll.

Something similar to how the Razor Generator works for MVC Views. Is this possible?

share|improve this question

2 Answers

Yes you can. There is a Class Library (Windows Store apps) that you can create which can be referenced from your App. However it has to be packaged with your application and can not loaded dynamically on the fly.

share|improve this answer
But I would like it to be embedded inside of the dll. So it would always have to be there as seperate XAML file? – AntSpiteri Mar 11 at 13:46
No. The XAML is always embedded in the dll. – Mr. Young Mar 11 at 15:56
up vote 0 down vote accepted

Found the solution in Tim Heuer's Blog here:

http://timheuer.com/blog/archive/2012/03/07/creating-custom-controls-for-metro-style-apps.aspx

Just in case any one is looking.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.