I\'m doing my first WPF application. im having problem whereby when my form is maximized or fullscreen, my controls wont resize and just stay in the same location. only the
To set Width and Height:
dockpanel1.width = 230; dockpanel1.height = 230;
as for location, wpf uses Margin:
wpf
dockpanel1.Margin = new Thickness(0,440,836,40);