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 ??
Inside Windows Form Designer. Make the changes like this.lable1.AutoSize = false;
this.lable1.AutoSize = false
Then:
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;