X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FManaged.Windows.Forms%2FSystem.Windows.Forms%2FDataGridViewComboBoxEditingControl.cs;h=99555eea7db80d3b1632fbafb5c90062f3ebb03d;hb=0593cad751880a0490cd388933ab8ded6b3c0334;hp=ee9cf5cda8e769341e86c3237ffa15d1c4d6805f;hpb=dbf19eb41dbd299c4c33d4de35ffe3cf6c669832;p=mono.git diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DataGridViewComboBoxEditingControl.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DataGridViewComboBoxEditingControl.cs index ee9cf5cda8e..99555eea7db 100644 --- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DataGridViewComboBoxEditingControl.cs +++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DataGridViewComboBoxEditingControl.cs @@ -75,24 +75,24 @@ namespace System.Windows.Forms { } public virtual void ApplyCellStyleToEditingControl (DataGridViewCellStyle dataGridViewCellStyle) { - throw new NotImplementedException(); + } public virtual bool EditingControlWantsInputKey (Keys keyData, bool dataGridViewWantsInputKey) { // true if the specified key is a regular key that should be handled by the editing control; otherwise, false - throw new NotImplementedException(); + return base.IsInputKey (keyData); } public virtual object GetEditingControlFormattedValue (DataGridViewDataErrorContexts context) { - throw new NotImplementedException(); + return Text; } public virtual void PrepareEditingControlForEdit (bool selectAll) { - throw new NotImplementedException(); + } protected override void OnSelectedIndexChanged (EventArgs e) { - throw new NotImplementedException(); + base.OnSelectedIndexChanged (e); } }