I am new to WPF environment and I am experiencing some problems like if there are alots of things how do we manage them.for example I have three borders each of same size same location and they contains controls like textboxes etc etc we construct them sequentially but when it comes to edit we get in trouble modifying the border that is at bottom.
So in short how do we manage many controls on single page so that it remains easy to edit
Not sure I completely understand your concerns, but here are several point that make editing WPF UI pretty easy:
DockPanel/StackPanel/etc) might help you a lot.StylesandControl templatesat the moment. If you have your borders repeating through the entire window, maybe you should think on extracting this border as aControlTemplateforContentControlfor example?