【问题标题】:How to hide dropdown toggle button in syncfusion如何在syncfusion中隐藏下拉切换按钮
【发布时间】:2022-06-10 19:06:31
【问题描述】:

我正在开发 Syncfusion Xamarin(c# & XAML) 组合框。我正在尝试隐藏下拉菜单上的切换按钮,但无法实现,并且在文档中找不到任何内容。

代码

                                <time:CustomComboBox
                                x:Name="type"
                                BorderColor="#a4a4a4"
                                DataSource="{Binding Type, Mode=TwoWay}"
                                DropDownTextSize="14"
                                HeightRequest="45"
                                IsEnabled="{Binding isEnable}"
                                IsSelectedItemsVisibleInDropDown="False"
                                SelectedItem="{Binding DType.Value, Mode=TwoWay}"
                                ShowBorder="False"
                                ShowClearButton="False"
                                SuggestionBoxPlacement="Bottom"
                                TextColor="#8793EF"
                                TextSize="15" />

我尝试了可见性,但它隐藏了整个事情。

【问题讨论】:

标签: c# xaml xamarin xamarin.forms syncfusion


【解决方案1】:

我们使用 DropDownButtonSettings Width & Height 属性根据您的要求准备了一个示例。请从附件中获取示例,下面是代码sn-p。

示例链接:https://www.syncfusion.com/downloads/support/directtrac/general/ze/DropdownToggleButton-1827799984

<time:SfComboBox
                    x:Name="type"
                    BorderColor="#a4a4a4"
                    DataSource="{Binding Type, Mode=TwoWay}"
                    DropDownTextSize="14"
                    HeightRequest="45"
                    IsEnabled="{Binding IsEnable}"
                    IsSelectedItemsVisibleInDropDown="False"
                    SelectedItem="{Binding SelectedValue, Mode=TwoWay}"
                    ShowBorder="False"
                    ShowClearButton="False"
                    SuggestionBoxPlacement="Bottom"
                    TextColor="#8793EF"
                    TextSize="15">
                    <time:SfComboBox.DropDownButtonSettings>
                       <time:DropDownButtonSettings Width="0" Height="0">
                    </time:DropDownButtonSettings>
                  </time:SfComboBox.DropDownButtonSettings>
 </time:SfComboBox>
 

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-05-30
    • 2021-12-02
    • 2020-07-05
    相关资源
    最近更新 更多