2
假設我有兩個帶變量文本的標籤。基於鄰居標籤設置標籤位置
例如:
label1.Text = "foo";
label2.Text = "baa";
形式輸出:
________________
| |
|foo baa |
|______________ |
其他例子:
label1.Text = "fooooo";
label2.Text = "baaaa";
形式輸出:
________________
| |
|fooooo baaaa |
|______________ |
我試了一下:
label2.Location = new Point
{
X = label1.Location.X + label2.Location.X,
Y = label1.Location.Y
};
我想象的空間就足夠了。但是如果文字較大,label2會隱藏label1。
曾任職完美。謝謝 :) –