0
我在頁面上排列了以下4個標籤。動態更改標籤的寬度
<s:Label id="lblName" x="10" y="13" text="{data.name}"/>
<s:Label id="lblComputer" x="10" y="37.5" text="{data.computer}"/>
<s:Label id="lblModel" x="45" y="37.5" text="{data.model}"/>
<s:Label id="lblCPU" x="43" y="63" text="{data.cpu}"/>
我試圖讓佈局看起來像這樣:
lblName
lblComputer lblModel
lblCPU
它的工作原理,如果lblComputer是短暫的名稱,但是如果它有很多字符,那麼lblComputer和lblModel一起運行並且完全不可讀。
如果lblComputer碰巧真的很長,有沒有辦法將lblModel的x值動態地改變爲lblComputer的「騰出空間」?
感謝
完美!謝謝! – SkyeBoniwell