I have a collection class. Say CellCollection, which contains Cells which contains a collection called Cell.
If we do data binding it binds in linear manner. Like first cell11, cell12, cell13, cell14 then, cell21, cell22, etc.,
[Lets assume the collection size is static and proceed]
I have an ItemTemplate for ListBox, which consists of StackPanel which contains 3 textblocks. What I want is the first textblock to have first "Cells"‘s first cell ie, Cell11, followed by the second textblock to have second "Cells"‘s first cell Cell21 etc.,
Is it possible to bind the collections using indexes in such a way they will be processes in-parallel.
I dono’t how to ask this question. I hope the image would help.
I’ve create dynamic xaml using xaml reader and assigned it as template for the list box. Everything is fine now 🙂