thím cẩn thận tí nữa lại có người nhờ đếm xem có bao nhiêu phím space đóspace space space space space space space space space space space space
=)) 12 lầnspace space space space space space space space space space space space
Mak bác ơi, doan code do để ở đâu trong code của mình z ?
đoạn đó để chỉnh chữ của bạn đó quẳng thử vô chỗ nào đó trong code xem có được k đãMak bác ơi, doan code do để ở đâu trong code của mình z ?
Mak bác ơi, doan code do để ở đâu trong code của mình z ?
public Form1()
{
InitializeComponent();
this.Text="Bla bla bla bla";
}
private void Form1_Load(object sender, EventArgs e)
{
Center_Text();
}
private void Center_Text()
{
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();
}
private void Form1_SizeChanged(object sender, EventArgs e)
{
Center_Text();
}
Code:public Form1() { InitializeComponent(); this.Text="Bla bla bla bla"; } private void Form1_Load(object sender, EventArgs e) { Center_Text(); } private void Center_Text() { 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(); } private void Form1_SizeChanged(object sender, EventArgs e) { Center_Text(); }
Nhét nó trong hàm SizeChanged rồi mà ??code của bác, mình sử dụng vào thì phải chỉnh cửa sổ nữa thì nó mới nằm ở giữa, bác biết cách cho nó tự động theo kích thước cửa sổ ko ^^
Nhét nó trong hàm SizeChanged rồi mà ??
private void Form1_SizeChanged(object sender, EventArgs e)
{
Center_Text();
}
Bạn hỏi vầy nữa thì mình bó tay, thôi bạn nghỉ học lập trình luôn đi cho đỡ tốn tiềnMak hàm SizeChanged nằm ở đâu z bác >.<
Click vào cái form, xong nó co mấy sự kiện là resize đó.Mak hàm SizeChanged nằm ở đâu z bác >.<