我有RadComboBox
如下: -
<telerik:RadComboBox ID="RadComboBoxNames" runat="server" Width="470px" DropDownAutoWidth="Enabled" MaxHeight="363px" Skin="MySkin" EmptyMessage="Select"
HighlightTemplatedItems="True" DataValueField="ID" DataTextField="ID" OnDataBound="RadComboBoxNames_DataBound" >
<HeaderTemplate>
<table style="width: 250px; text-align: left">
<tr>
<td style="font-weight: bold; width: 60px;">ID</td>
<td style="font-weight: bold; width: 180px;">Name</td>
</tr>
</table>
</HeaderTemplate>
<ItemTemplate>
<table style="width: 250px; text-align: left">
<tr>
<td style="width: 60px;"><%#DataBinder.Eval(Container.DataItem, "ID")%></td>
<td style="width: 180px;"><%#DataBinder.Eval(Container.DataItem, "Name")%></td>
</tr>
</table>
</ItemTemplate>
</telerik:RadComboBox>
现在DropDown
高度不是我在363px
属性中设置的MaxHeight
,它非常小,即使我增加了dropdown
高度MaxHeight
属性中的值!!
如何提高DropDownHeight
的{{1}}?我必须使用任何造型技术吗?请帮助,谢谢。
答案 0 :(得分:0)
您也可以通过修改MaxWidth
的默认主题来更改RadComboBox
下拉区域的RadComboBox
。为此,请按照下列步骤操作:
x:Key="NonEditableComboBox"
x:Name="PART_Popup"
希望它会有所帮助。
答案 1 :(得分:0)
保持Height
!!
RadComboBox
属性