Read XAML file
WPF
3
Posts
2
Posters
0
Views
1
Watching
-
-
Hi all, I m new to WPF. I m developing one application in which i want to read XAML file and iterate thru each control element and find the name and value of that control and write to another xml file. So kindly need yr suggesion.. Thanks
Krishnraj
-
the class XamlReader let's you read the root element from a xaml file (with Read method) then you could iterate thru the logical tree using LogicalTreeHelper Good Luck