Hello
I 'd like to move inner grouplist button from the outer grouplist button. Here is my code to test.
I can not move 1720 to 1730.How to move from 1720(outer grouplist) to 1730(inner grouplist)? (i.e I need different item gap of two group list)
I 'd like to move inner grouplist button from the outer grouplist button. Here is my code to test.
<!-- outer group list -->
<control type="grouplist">
<top>100</top>
<left>100</left>
<orientation>horizontal</orientation>
<width>1800</width>
<height>120</height>
<itemgap>50</itemgap>
<control type="button" id="1700">
...
</control>
<control type="button" id="1710">
...
</control>
<control type="button" id="1720">
...
</control>
<!-- inner group list -->
<control type="grouplist">
<width>1800</width>
<height>120</height>
<itemgap>25</itemgap>
<orientation>horizontal</orientation>
<control type="button" id="1730">
...
</control>
<control type="button" id="1740">
...
</control>
</control>
</control>
I can not move 1720 to 1730.How to move from 1720(outer grouplist) to 1730(inner grouplist)? (i.e I need different item gap of two group list)