I am writing a windows 8 app (for myself) that generates g-code for some auto generated paths. When generating the g-code I want to use textual templates that can be written and edited by myself within the app. I thought it would be a good idea to follow the {binding path} notation so my template might look something like
"{binding Gcode.LinearMove} {binding Axis.X} {binding CurrentPoint.X } .... " to give "G1 X 90 ... " after databinding.
All the objects Gcode, Axis, CurrentPoint could be defined to be part of the DataContext of the code generator.
I currently use simple strings built using StringBuilder and passed to a ListView for display and use format to replace the values, but of course this freezes the properties I use in code and is restrictive. I have played with specific template names which were replaced using regular expressions but again the replacement values were frozen in code.
I thought that using editable templates would allow me much greater freedom to dynamically choose which properties to use at run time.
So my question, Is this possible to do using existing metro classes and the .net implementation of data binding or do I have to start from scratch? Bearing in mind that the binding will be on non visible and non UI controls. I thought that using Textblocks for lists of thousands of lines of gcode would be a silly thing to do in terms of resources and also I read somewhere that multibinding was unavailable in apps.
Alan