I am developing a Windows Form Application. I want to Align the Text to Center or say to Right of Title Bar of Form. How can I do it ??
If it's a text that's inside a control (Like a label), you can edit the property named "TextAlign" to accomplish what you want inside Windows Form Designer.
Or programmatically,
Label.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
If you're talking about aligning the text of the title bar, there is no way to do this through Winforms. You will have to use something like this: http://www.codeproject.com/Articles/93959/WinForm-Extended