怎么让C#窗体的标题文字居中,如下图
4个回答
展开全部
private void Form1_Load(object sender, EventArgs e)
{
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 += "*";
tw += ws;
}
this.Text = tmp.Replace("*", " ") + this.Text.Trim();
}
追问
不是这样子,就是你没新建一个窗体他都自动居中
追答
没有自动的居中方法,你在每个窗体的load中都写这么个函数就行了。或者就新建一个居中的Form类,其他的继承它。
展开全部
用第三方的控件,如Dotnetbar,并让窗体继承DevComponent.DotnetBar.Metrol.Metroform类。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
引用阳光的雷咩咩的回答:
private void Form1_Load(object sender, EventArgs e) { 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 += "*"; tw += ws; } this.Text = tmp.Replace("*", " ") + this.Text.Trim(); }
private void Form1_Load(object sender, EventArgs e) { 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 += "*"; tw += ws; } this.Text = tmp.Replace("*", " ") + this.Text.Trim(); }
展开全部
根本不行啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
根据窗体的width和标题的lenth,在前面加width/2的空格;
追问
不是这样子,就是你没新建一个窗体他都自动居中
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询