I am new to WPF and came across a situation where i think adding controls dynamically would be good.
But i don't know if there is way to it dynamically using code. I want to add following using Code
<WrapPanel Height="39">
<TextBox Width="93" Margin="-1,5,0,0"></TextBox>
<TextBox Width="76" Margin="0,5,0,0"></TextBox>
<TextBox Width="70" Margin="0,5,0,0"></TextBox>
<TextBox Width="70" Margin="0,5,0,0"></TextBox>
<TextBox Width="127" Margin="0,5,0,0"></TextBox>
<TextBox Width="100" Margin="0,5,0,0"/>
</WrapPanel>
I tried THIS method,but it did not work