I'm trying to dynamicaly add a shape to a grid, I'm creating and setting it this way :
Rectangle theRect = new Rectangle();
currentRect = theRect;
theRect.VerticalAlignment = Windows.UI.Xaml.VerticalAlignment.Top;
theRect.HorizontalAlignment = Windows.UI.Xaml.HorizontalAlignment.Left;
theRect.Margin = new Thickness(oldPos.X,oldPos.Y,0,0);
theRect.StrokeThickness = brushWidht;
theRect.Stroke = new SolidColorBrush(brushColor);
theRect.Height = newPoint.Y - oldPos.Y;
theRect.Width = newPoint.X - oldPos.X;
theBoard.Children.Add(theRect);
But it sticks to the corner of "theBoard" which is the grid where I put it. Does anybody can help me with this ? Thanks.
Windows.UI.Xamlnamespace belongs to WinRT, not WPF. wrong tag. – HighCore Nov 22 '12 at 15:25