|
this.sfDataGrid.CellRenderers.Remove("ComboBox");
this.sfDataGrid.CellRenderers.Add("ComboBox", new GridComboBoxCellRendererExt());
public class GridComboBoxCellRendererExt : GridComboBoxCellRenderer
{
protected override void OnInitializeEditElement(DataColumnBase column, RowColumnIndex rowColumnIndex, SfComboBox uiElement)
{
base.OnInitializeEditElement(column, rowColumnIndex, uiElement);
uiElement.AutoCompleteMode = AutoCompleteMode.Suggest;
uiElement.DropDownButton.Visible = false;
}
}
} |
is it possible to implement this example in wpf?