You can control the way buttons are rendered using the ButtonSettings
property.
You can display text next to the image by setting the RenderButtonText
property to true. Do not forget to adjust the AreaWidth
(or AreaHeight) property in order to accomodate the text:
<RadListBox runat="server" ID="RadListBox1" AllowReorder="true" >
<ButtonSettings AreaWidth="100px" RenderButtonText="True" />
</RadListBox/>
You can change the position of the buttons by using the Position
property of the ButtonSettings:
<RadListBox runat="server" ID="RadListBox1" AllowReorder="true" >
<ButtonSettings Position="Bottom" />
</RadListBox/>
You can also specify the alignment of the buttons by using the HorizontalAlign
and VerticalAlign properties depending on the Position
property:
<RadListBox runat="server" ID="RadListBox1" AllowReorder="true" >
<ButtonSettings Position="Bottom" HorizontalAlign="Center" />
</RadListBox/>
<RadListBox runat="server" ID="RadListBox1" AllowReorder="true" >
<ButtonSettings Position="Right" VerticalAlign="Middle" />
</RadListBox/>