Is it expected behaviour that the AdornerLayer ignores an adorner's HorizontalAlignment and VerticalAlignment values? I have an adorner that has a single child, and I tried this in its constructor:
HorizontalAlignment = HorizontalAlignment.Center;
VerticalAlignment = VerticalAlignment.Center;
along with these layout overrides:
/// <param name="constraint">A value equal to AdornedElement.RenderSize</param>
protected override Size MeasureOverride( Size constraint )
{
child.Measure( constraint );
return child.DesiredSize;
}
/// <param name="finalSize">A value equal to child.DesiredSize</param>
protected override Size ArrangeOverride( Size finalSize )
{
child.Arrange( new Rect(finalSize) );
return finalSize;
}
I was hoping the AdornerLayer would center the adorner, but it didn't. It seems to me that AdornerLayer.RenderSize will equal AdornedElement.RenderSize, so this should work. Am I missing something?
Note that I already obtained the desired effect by setting the child's (instead of the adorner's) alignments to center and the adorner's size to AdornedElement.RenderSize. But I'd still like to know why my original approach doesn't work or, better yet, how to make it work.