Hi.
I have made a LstViewControl wich contains three columns.
I'll try to find the right size of the LstViewControl and the columns, but when i adjust the size it "push" the columns, it mades them bigger.
I can't avoid the bottomscroller.
The meaning is that you can see all three columns without scroll.
Heres a picture of how it looks now:
code:
<Control xsi:type="ListViewControl" Id="liste">
<Position Top="17" Left="5" Width="300" Height="130">
<Anchor Horizontal="LeftRightFixed" Vertical="TopBottomFixed"/>
</Position>
<Attributes>
<AutoTip>true</AutoTip>
<AlwaysShowSelection>false</AlwaysShowSelection>
</Attributes>
<ReportView>
<HeaderDragDrop>true</HeaderDragDrop>
<HasCheckboxes>false</HasCheckboxes>
<SortColHeader>true</SortColHeader>
</ReportView>
<Columns>
<Column>
<ColumnId>Kunstner</ColumnId>
<Label>Kunstner</Label>
<Width>50</Width>
</Column>
<Column>
<ColumnId>Nummer</ColumnId>
<Label>Nummer</Label>
<Width>50</Width>
</Column>
<Column>
<ColumnId>Album</ColumnId>
<Label>Album</Label>
<Width>50</Width>
</Column>
</Columns>
</Control>
Thanks in advance.