c# - Doxygen Documentation for WPF -


i in process of creating documentation c# code. i've done lot of ordinary source code , set doxygen create html out of it. arrived @ ui done in wpf, both xaml , source code. question is, best way document these files? comments possible in xaml not useful cannot nested. don't know if doxygen can possibly handle xaml documentation. should documented in xaml.cs files?

i found more or less solution. @ first, have add file extension file_patterns, *.xaml in case. doxygen uses extension determine parser use. guess default c. next add documentation this:

<!--> /** \file * \brief brief file description. *  * more elaborated file description. */ --> 

the < !-- , --> comment section xaml files. when doxygen parses file removes documentation without adding it. that's why there > fool doxygen parser comment finished. know ugly worst can happen descriptions lost in documentation still available in files. long there no better way of doing stick this.


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -