The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
KPKamalesh Periyasamy Syncfusion Team February 14, 2025 05:22 AM UTC
Hi Phunction
We have reviewed your query and theSfComboBoxcontrol includes a built-in clear button (an "X" icon) that allows users to clear the selected value. If you want to remove this button, you can set theIsClearButtonVisibleproperty to false. By doing so, the clear button will not be displayed in the UI, preventing users from clearing the selection manually.
<editors:SfComboBox
x:Name="comboBox"
WidthRequest="250"
IsEditable="True"
HeightRequest="50"
IsClearButtonVisible="false"
DisplayMemberPath="Name"
TextMemberPath="Name"
ItemsSource="{Binding SocialMedias}" />
We have attached a sample below that demonstrates this functionality. Please refer to it for a complete working example. Let us know if you need further assistance!