组合框中向上的下拉选项

Dropdown options upward in combobox

我正在处理下拉字段。我正在使用 Syncfusion 的组合框。我的下拉选项是向下打开的。结果,选项隐藏在屏幕下方,因为它是最后一个字段。我想向上打开选项。有什么办法吗?

问题图片

代码

<combobox:SfComboBox x:Name="inch" 
    HeightRequest="45" 
    WidthRequest="50"
    HorizontalOptions="FillAndExpand"
    Watermark="inch"
    TextSize="15" 
    DropDownTextSize="14"
    TextColor="#8793EF"
    IsEnabled="{Binding isEnable}"        
    SelectedItem="{Binding Inch}"
    ShowClearButton="False"
    ShowBorder="False">
    <combobox:SfComboBox.ComboBoxSource>
        <ListCollection:List x:TypeArguments="x:String">
            <x:String>0</x:String>
            <x:String>1</x:String>
            <x:String>2</x:String>
            <x:String>3</x:String>
        </ListCollection:List>
    </combobox:SfComboBox.ComboBoxSource>
</combobox:SfComboBox>

尝试设置 SuggestionBoxPlacement 属性。

SuggestionBoxPlacement="顶部"

Doc Reference