Click here to Skip to main content
15,901,368 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more: , +
How can I implement Content Alignment Enumeration of System.Windows.Forms.VisualStyles.
It contains Member ContentAlignment which align the Caption Text.
How to implement it in Windows Application using c#

Thanks in Advance !!!
Posted
Comments
[no name] 12-Aug-12 12:04pm    
http://www.codeproject.com/Questions/437938/Center-Align-the-TExt-of-Form-Title-Bar

This is the Code to Center Align Text in title Bar in Windows Form in c#.

Write The Following Method and call it in Form Load event.
C#
private void UpdateTextPosition()
        {
            Graphics g = this.CreateGraphics();
            Double startingPoint = (this.Width / 2) - (g.MeasureString(this.Text.Trim(), this.Font).Width / 2);
            Double widthOfASpace = g.MeasureString(" ", this.Font).Width;
            String tmp = " ";
            Double tmpWidth = 0;

            while ((tmpWidth + widthOfASpace) < startingPoint)
            {
                tmp += " ";
                tmpWidth += widthOfASpace;
            }

            this.Text = tmp + this.Text.Trim();
        }
 
Share this answer
 
Comments
Ank_ush 15-Aug-12 11:11am    
If You find this solution Correct then plz vote for this Solution.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900