Reputation: 1587
We develop a WPF application that has something like a context sensitive help. The content of the help pages is currently written as word documents by external colleagues (say biologists) and then translated to xaml code by developers. This process is tedious and error prone because the biologists don't see the xaml code and the word documents can't easily be diffed and tracked in a version control system.
So we'd like to improve this process and maintain the content in a single place, in a format that
The solution could be a framework, an external tool or any other idea. The format should support simple html rendering such as bold and italic, superscripts, etc and images.
Upvotes: 3
Views: 68
Reputation: 6238
I suggest to use Flow Documents:
I'm not only sure if flow documents can be embedded in resources. If it is not possible, I think that help files can be distributed separately. It doesn't seem to be a big problem.
Alternatively instead of flow documents you can use RTF format. RichTextBox
can be also used to edit this kind of documents.
Upvotes: 2