Hi: I have a xaml file (regulator.xaml) that is used as one of many resource files in order to display a drawing in the main program. I have built a seperate utility in C# to add paths to draw triangles ect. to the xaml resource file (regulator.xaml). I am confused as to the best way to proceed to read the xaml file (regulator.xaml) in and edit it and save it. So my question boils down to 3 ways of doing it:
1) read the file in and add simple text then save it. I see the file loads into notepad so this should be fairly easy.
2) Use XMLReader, XMLWriter ect. to load and edit the file.
3) Use XAMLReader, XAMLWriter ect. to load and edit the file. What is the differance between XAML & XML readers ect.
I figured asking the experts for some guidance will save me alot of trial and error. Here is the xaml file:
<?xml version="1.0" encoding="utf-8"?><ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"><DrawingBrush x:Key="RegulatorOff" Stretch="Uniform"><DrawingBrush.Drawing><DrawingGroup><DrawingGroup.Children><GeometryDrawing Brush="#FFFFFFFF" Geometry="F1 M 50.0419,25.0765L 40.1036,25.0765"><GeometryDrawing.Pen><Pen Thickness="3" LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FFFFFFFF" Geometry="F1 M 10.1042,25.0765L 0.0418828,25.0765"><GeometryDrawing.Pen><Pen Thickness="3" LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FF000000" Geometry="F1 M 10,35L 40,15L 40,35L 10,15L 10,35 Z "><GeometryDrawing.Pen><Pen LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FF000000" Geometry="F1 M 25,25L 25,10"><GeometryDrawing.Pen><Pen LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FF000000" Geometry="F1 M 35,10L 15,10L 35,10 Z "><GeometryDrawing.Pen><Pen LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FF000000" Geometry="F1 M 14.9479,10.0767C 18.3229,7.05585 21.6979,4.03502 25.0521,4.05585C 28.4063,4.07668 31.7396,7.13918 35.0729,10.2017"><GeometryDrawing.Pen><Pen LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Geometry="F1 M 25,4L 25,1L 40,1"><GeometryDrawing.Pen><Pen Thickness="0.5" LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Geometry="F1 M 40.0208,0.805851L 40,11L 25,17"><GeometryDrawing.Pen><Pen Thickness="0.5" LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing></DrawingGroup.Children></DrawingGroup></DrawingBrush.Drawing></DrawingBrush><DrawingBrush x:Key="RegulatorAlarm" Stretch="Uniform"><DrawingBrush.Drawing><DrawingGroup><DrawingGroup.Children><GeometryDrawing Brush="#FFFF0000" Geometry="F1 M 50.0419,25.0765L 40.1036,25.0765"><GeometryDrawing.Pen><Pen Thickness="3" LineJoin="Round" Brush="#FFFF0000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FFFF0000" Geometry="F1 M 10.1042,25.0765L 0.0418828,25.0765"><GeometryDrawing.Pen><Pen Thickness="3" LineJoin="Round" Brush="#FFFF0000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FFFF0000" Geometry="F1 M 10,35L 40,15L 40,35L 10,15L 10,35 Z "><GeometryDrawing.Pen><Pen LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FFFF0000" Geometry="F1 M 25,25L 25,10"><GeometryDrawing.Pen><Pen LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FFFF0000" Geometry="F1 M 35,10L 15,10L 35,10 Z "><GeometryDrawing.Pen><Pen LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FFFF0000" Geometry="F1 M 14.9479,10.0767C 18.3229,7.05585 21.6979,4.03502 25.0521,4.05585C 28.4063,4.07668 31.7396,7.13918 35.0729,10.2017"><GeometryDrawing.Pen><Pen LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Geometry="F1 M 25,4L 25,1L 40,1"><GeometryDrawing.Pen><Pen Thickness="0.5" LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Geometry="F1 M 40.0208,0.805851L 40,11L 25,17"><GeometryDrawing.Pen><Pen Thickness="0.5" LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing></DrawingGroup.Children></DrawingGroup></DrawingBrush.Drawing></DrawingBrush><DrawingBrush x:Key="RegulatorOn" Stretch="Uniform"><DrawingBrush.Drawing><DrawingGroup><DrawingGroup.Children><GeometryDrawing Brush="#FF0096FF" Geometry="F1 M 50.0419,25.0765L 40.1036,25.0765"><GeometryDrawing.Pen><Pen Thickness="3" LineJoin="Round" Brush="#FF0096FF"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FF0096FF" Geometry="F1 M 10.1042,25.0765L 0.0418828,25.0765"><GeometryDrawing.Pen><Pen Thickness="3" LineJoin="Round" Brush="#FF0096FF"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FF0096FF" Geometry="F1 M 10,35L 40,15L 40,35L 10,15L 10,35 Z "><GeometryDrawing.Pen><Pen LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FF0096FF" Geometry="F1 M 25,25L 25,10"><GeometryDrawing.Pen><Pen LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FF0096FF" Geometry="F1 M 35,10L 15,10L 35,10 Z "><GeometryDrawing.Pen><Pen LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Brush="#FF0096FF" Geometry="F1 M 14.9479,10.0767C 18.3229,7.05585 21.6979,4.03502 25.0521,4.05585C 28.4063,4.07668 31.7396,7.13918 35.0729,10.2017"><GeometryDrawing.Pen><Pen LineJoin="Round" Brush="#FF000000"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Geometry="F1 M 25,4L 25,1L 40,1"><GeometryDrawing.Pen><Pen Thickness="0.5" LineJoin="Round" Brush="#FF0096FF"/></GeometryDrawing.Pen></GeometryDrawing><GeometryDrawing Geometry="F1 M 40.0208,0.805851L 40,11L 25,17"><GeometryDrawing.Pen><Pen Thickness="0.5" LineJoin="Round" Brush="#FF0096FF"/></GeometryDrawing.Pen></GeometryDrawing></DrawingGroup.Children></DrawingGroup></DrawingBrush.Drawing></DrawingBrush></ResourceDictionary>Thanks
Mike Gallinger C.Tech. Cutting Edge Computing Software Developer