c#窗体标题文本居中

        //Graphics g = this.CreateGraphics();
        //Double startingPoint = (this.Width / 2) - (g.MeasureString(this.Text.Trim(), this.Font).Width / 2);
        //Double ws = g.MeasureString("*", this.Font).Width;
        //String tmp = " ";
        //Double tw = 0;

        //while ((tw + ws) < startingPoint)
        //{
        //    tmp += "3 ";
        //    tw += ws;
        //}
        //this.Text = tmp.Replace("3", " ") + this.Text.Trim();

你可能感兴趣的:(窗体文本居中·)