第一个组合框是一个dx:使用devexpress的ASPxComboBox我希望它看起来像是来自asp.net的图片下拉列表中的第二个
如何将Combobox设置为图片中asp.net的第二个下拉列表 我试过这个解决方案 https://www.devexpress.com/Support/Center/Question/Details/Q513816 但仍然没有看起来相同的下拉列表 :
的HTML代码 <td style="text-align: right">
<dx:ASPxComboBox ID="ASPxComboBox1" runat="server"
DropDownStyle="DropDownList"
EnableIncrementalFiltering="True"
IncrementalFilteringMode="StartsWith"
ValueType="System.String" Width="205px">
<ButtonStyle Paddings-Padding="0px">
</ButtonStyle>
<Border BorderStyle="None" />
<DropDownButton>
<Image Height="25px" Url="images/button.png" Width="15px">
</Image>
</DropDownButton>
</dx:ASPxComboBox>
</td>
下拉列表HTML代码:
<td style="text-align: right">
<asp:DropDownList ID="DDLBranchName" runat="server" Width="205px"
Font-Size="Large">
</asp:DropDownList>
</td>
我的CSS:
.cont .tableSection
{
float:right;
border:2px solid black;
width:100%;
direction:rtl;
border-radius:10px;
margin:5px auto;
}