Is there an alternative to RoboHelp that generates XAML?

Want to create help content for a range of Silverlight applications. We would like content to be consumed directly in Silverlight WITHOUT any interaction with the browser, since we want to support online and offline with minimal effort.

+3
source share
1 answer

If your silverlight application uses a database, I would use a database to store your help topics. It takes a bit of work, but it is very flexible and cheap!

If you are not using a database, you can write it as XML (or another format if you want) and make it a resource in your application. Then you can prepare it as data. Resource Files in Silverlight

+1
source

Source: https://habr.com/ru/post/1762303/


All Articles