我想在使用C#的WinForms中使用DataGridView創建一個自動完成列。我設法使用DataGridView的EditingControlShowing
事件來工作,並且工作正常。在DataGridView中創建自動完成列
但是,按照正常的自動完成文本框,過濾的列表僅顯示基於「開始」的數據過濾。爲了解決這個問題,我使用了從here的自動完成文本框,允許使用自定義列表框進行子字符串搜索。
以此自定義控件爲基礎,我創建了一個繼承DataGridViewColumn的自定義控件。問題是ListBox控件不能與gridview單元內聯顯示。這裏的代碼 -
public class DataGridViewAutoCompleteColumn : DataGridViewColumn
{
public DataGridViewAutoCompleteColumn()
: base(new DataGridViewAutoCompleteCell())
{
}
public override DataGridViewCell CellTemplate
{
get
{
return base.CellTemplate;
}
set
{
// Ensure that the cell used for the template is a DataGridViewAutoCompleteCell.
if (value != null &&
!value.GetType().IsAssignableFrom(typeof(DataGridViewAutoCompleteCell)))
{
throw new InvalidCastException("Must be a DataGridViewAutoCompleteCell");
}
base.CellTemplate = value;
}
}
}
public class DataGridViewAutoCompleteCell : DataGridViewTextBoxCell
{
public DataGridViewAutoCompleteCell()
: base()
{
// Use the short date format.
this.Style.Format = "d";
}
public override void InitializeEditingControl(int rowIndex, object
initialFormattedValue, DataGridViewCellStyle dataGridViewCellStyle)
{
// Set the value of the editing control to the current cell value.
base.InitializeEditingControl(rowIndex, initialFormattedValue, dataGridViewCellStyle);
AutoCompleteEditingControl ctl = DataGridView.EditingControl as AutoCompleteEditingControl;
ctl.AutoCompleteList = this.AutoCompleteList;
// Use the default row value when Value property is null.
if (this.Value == null)
{
ctl.Text = (string)this.DefaultNewRowValue;
}
else
{
ctl.Text = (string)this.Value;
}
}
public override Type EditType
{
get
{
// Return the type of the editing control that DataGridViewAutoCompleteCell uses.
return typeof(AutoCompleteEditingControl);
}
}
public override Type ValueType
{
get
{
// Return the type of the value that DataGridViewAutoCompleteCell contains.
return typeof(String);
}
}
public override object DefaultNewRowValue
{
get
{
// Use the current date and time as the default value.
return string.Empty;
// return DateTime.Now;
}
}
public List<String> AutoCompleteList { get; set; }
}
class AutoCompleteEditingControl : AutoCompleteTextbox, IDataGridViewEditingControl
{
DataGridView dataGridView;
private bool valueChanged = false;
int rowIndex;
public AutoCompleteEditingControl()
{
}
// Implements the IDataGridViewEditingControl.EditingControlFormattedValue
// property.
public object EditingControlFormattedValue
{
get
{
return this.Text;
}
set
{
if (value is String)
{
try
{
// This will throw an exception of the string is
// null, empty, or not in the format of a date.
this.Text = (String)value;
}
catch
{
// In the case of an exception, just use the
// default value so we're not left with a null
// value.
this.Text = String.Empty;
}
}
}
}
// Implements the
// IDataGridViewEditingControl.GetEditingControlFormattedValue method.
public object GetEditingControlFormattedValue(
DataGridViewDataErrorContexts context)
{
return EditingControlFormattedValue;
}
// Implements the
// IDataGridViewEditingControl.ApplyCellStyleToEditingControl method.
public void ApplyCellStyleToEditingControl(
DataGridViewCellStyle dataGridViewCellStyle)
{
this.Font = dataGridViewCellStyle.Font;
this.ForeColor = dataGridViewCellStyle.ForeColor;
this.BackColor = dataGridViewCellStyle.BackColor;
}
// Implements the IDataGridViewEditingControl.EditingControlRowIndex
// property.
public int EditingControlRowIndex
{
get
{
return rowIndex;
}
set
{
rowIndex = value;
}
}
// Implements the IDataGridViewEditingControl.EditingControlWantsInputKey
// method.
public bool EditingControlWantsInputKey(
Keys key, bool dataGridViewWantsInputKey)
{
// Let the DateTimePicker handle the keys listed.
switch (key & Keys.KeyCode)
{
case Keys.Left:
case Keys.Up:
case Keys.Down:
case Keys.Right:
case Keys.Home:
case Keys.End:
case Keys.PageDown:
case Keys.PageUp:
return true;
default:
return !dataGridViewWantsInputKey;
}
}
// Implements the IDataGridViewEditingControl.PrepareEditingControlForEdit
// method.
public void PrepareEditingControlForEdit(bool selectAll)
{
// No preparation needs to be done.
}
// Implements the IDataGridViewEditingControl
// .RepositionEditingControlOnValueChange property.
public bool RepositionEditingControlOnValueChange
{
get
{
return false;
}
}
// Implements the IDataGridViewEditingControl
// .EditingControlDataGridView property.
public DataGridView EditingControlDataGridView
{
get
{
return dataGridView;
}
set
{
dataGridView = value;
}
}
// Implements the IDataGridViewEditingControl
// .EditingControlValueChanged property.
public bool EditingControlValueChanged
{
get
{
return valueChanged;
}
set
{
valueChanged = value;
}
}
// Implements the IDataGridViewEditingControl
// .EditingPanelCursor property.
public Cursor EditingPanelCursor
{
get
{
return base.Cursor;
}
}
protected override void OnTextChanged(EventArgs eventargs)
{
// Notify the DataGridView that the contents of the cell
// have changed.
valueChanged = true;
this.EditingControlDataGridView.NotifyCurrentCellDirty(true);
base.OnTextChanged(eventargs);
}
}
請告知我在這裏做什麼錯。
謝謝..問題解決.. –
沒問題Ranjan! 如果此答案有助於解決您的問題,請將其標記爲已接受並帶有複選標記。這會幫助我成爲新用戶。 https://i.stack.imgur.com/QpogP.png –