Using this complete example I could draw text on Aero Glass. The rendering is perfectly fine, but there is a visual problem: the glow is clipped on the text-alignment side.
FYI, text format is defined like this:
Dim uFormat As Integer = TextFormatFlags.NoPrefix Or TextFormatFlags.WordBreak Or _
TextFormatFlags.TextBoxControl Or TextFormatFlags.EndEllipsis
Can this be fixed?
This example is used a middle-center alignment for the text by default. The format you using (NoPrefix|WordBreak|TextBoxControl|EndEllipsis) is left-aligned by default. So to fix glow clipping you should extend glow bounds.
Here is the corrected the sample: