Introduction
This is a combo box which can bind to business objects and can show null values (empty).
Background
The problem with the combo box is that after you bind data to it, it is not possible to show an empty Text property. It is also not possible to delete an already selected value. This combo box can do both. It is designed that you bind business objects to it, but I think (never tried it) it should also work with .NET DataTables.
Using the code
I call the little trick I do "lazy binding". With this I mean, that I don't bind the data in the first place when you set the datasource. I wait until the user actually tries to drop down the combo box. So you have the effect that the user sees an empty combo box in the beginning. The deleting of already selected items works nearly similar. In that case (if the user press DEL or BACK button), I remove the databinding of the combo box (but still remember the datasource). The code itself is really simple:
The only interesting method is the one that does the data binding:
public void SetDataBinding(IList dataSource, object objectToModify,
string propertyName, string displayMember)
{
this.DisplayMember = String.Empty;
this.Items.Clear();
this.ValueMember = String.Empty;
this.Text = String.Empty;
this.mDataSource = dataSource;
this.mObjectToModify = objectToModify;
this.mPropertyName = propertyName;
this.mProperty =
this.mObjectToModify.GetType().GetProperty(this.mPropertyName);
this.mDisplayMember = displayMember;
this.mNullableMode = true;
object selectedItem =
this.mProperty.GetValue(this.mObjectToModify, null);
if (selectedItem != null)
{
this.DataSource = this.mDataSource;
this.SelectedItem = selectedItem;
}
else
this.DataSource = null;
}
The drop down event:
protected override void OnDropDown(EventArgs e)
{
if (this.mNullableMode && this.mDataSource
!= null && this.DataSource == null)
this.DataSource = this.mDataSource;
base.OnDropDown(e);
}
And the key down event:
protected override void OnKeyDown(KeyEventArgs e)
{
if (this.mNullableMode && (e.KeyCode ==
Keys.Delete || e.KeyCode == Keys.Back))
{
this.DroppedDown = false;
this.DataSource = null;
}
base.OnKeyDown(e);
}