I have some what complex UI requirement, need help in understanding type of control/style/template that can provide this support.Please find the screenshot attached. So, I have some couple of Textbox and Textblocks which gets repeated. How to repeat the controls using WPF?

Hello All, Need some more information about above scenario. Now I am able to accomplish the UI, but I have a list of values for each text box so how to accomplish this binding. For Ex:
and my Itemcontrol is
So, my ListStpTrade has List of Some values (I am attaching the value how it is holding). So I need to bind the Textbox of RuleName with the ListSTPTrade’s Rulename
If each form represents an instance of the same type in a collection, then you can use an
ItemsControlwith a customDataTemplate.E.g.
See here for more details.