I need to put an user control (a TextBlock in this case) in the horizontal center of a WriteableBitmap, here is the code that i come with so far:
textblock1.RenderTransformOrigin = new Point(0.5, 0.5);
wp.Render(textblock1, new TranslateTransform() {Y = topMargin, X = imgWidth / 2});
but it appears that the pivot point of the textblock is still at the left edge of the control, where did i do wrong?