Justifying text using DrawString in C#

匆匆过客 提交于 2019-11-29 14:18:28

There is no built-in way to do it. Some work-arounds are mentioned on this thread:

http://social.msdn.microsoft.com/Forums/zh/winforms/thread/aebc7ac3-4732-4175-a95e-623fda65140e

They suggest using an overridden RichTextBox, overriding the SelectionAlignment property (see this page for how) and setting it to Justify.

The guts of the override revolve around this pInvoke call:

PARAFORMAT fmt = new PARAFORMAT();
fmt.cbSize = Marshal.SizeOf(fmt);
fmt.dwMask = PFM_ALIGNMENT;
fmt.wAlignment = (short)value;

SendMessage(new HandleRef(this, Handle), // "this" is the RichTextBox
    EM_SETPARAFORMAT,
    SCF_SELECTION, ref fmt);

Not sure how well this can be integrated into your existing model (since I assume you're drawing more than text), but it might be your only option.

I FOUND IT :)

http://csharphelper.com/blog/2014/10/fully-justify-a-line-of-text-in-c/

in brief - you can justify text in each separate line when you know the given width of the entire paragraph:

float extra_space = rect.Width - total_width; // where total_width is the sum of all measured width for each word
int num_spaces = words.Length - 1; // where words is the array of all words in a line
if (words.Length > 1) extra_space /= num_spaces; // now extra_space has width (in px) for each space between words

the rest is pretty intuitive:

float x = rect.Left;
float y = rect.Top;
for (int i = 0; i < words.Length; i++)
{
    gr.DrawString(words[i], font, brush, x, y);

    x += word_width[i] + extra_space; // move right to draw the next word.
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!