问题
I have some code to draw some text:
var textFormat = new SharpDX.DirectWrite.TextFormat(fontFactory, "Arial", SharpDX.DirectWrite.FontWeight.Bold,
SharpDX.DirectWrite.FontStyle.Normal, SharpDX.DirectWrite.FontStretch.Condensed, 16.0f);
renderTarget.DrawText("AC", textFormat, textRect, textBrush, DrawTextOptions.NoSnap);
The text is drawn starting at the top-left of the target rectangle. Is there any way to right-justify the text?
回答1:
The fourth entry for the google search "right justify text sharpdx direct2d" shows me the documentation of the TextFormat
class, which has the property TextAlignment
. Sometimes a little search is faster then to use Stackoverflow ;)
来源:https://stackoverflow.com/questions/17253201/right-justify-text-using-sharpdx-direct2d