Hi you,
I want using custom Font with icon of your control. But it not working, here my code:
var vb = new SfComboBox();
var model = new ViewModel();
vb.DataSource = model.Data;
vb.DropDownButtonSettings.Width = 20;
vb.DropDownButtonSettings.BackgroundColor = Color.Transparent;
vb.DropDownButtonSettings.HighlightFontColor = Color.Transparent;
vb.DropDownButtonSettings.HighlightedBackgroundColor = Color.Transparent;
vb.DropDownButtonSettings.FontFamily = "ICON";
vb.DropDownButtonSettings.FontIcon = "\U000f0140";
Content = new StackLayout { Children = { vb } };
I dont want use platform Resource/Assets to import my .ttf.
Do you have any other solution?
Thanks you.