本文整理汇总了C#中System.Windows.Forms.DataGridViewCell.InitializeEditingControl方法的典型用法代码示例。如果您正苦于以下问题:C# DataGridViewCell.InitializeEditingControl方法的具体用法?C# DataGridViewCell.InitializeEditingControl怎么用?C# DataGridViewCell.InitializeEditingControl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.DataGridViewCell
的用法示例。
在下文中一共展示了DataGridViewCell.InitializeEditingControl方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitializeEditingControlValue
// Returns true for success, returns false when the OnDataError event cancels the operation.
private bool InitializeEditingControlValue(ref DataGridViewCellStyle dataGridViewCellStyle, DataGridViewCell dataGridViewCell)
{
Debug.Assert(dataGridViewCell != null);
Debug.Assert(this.editingControl != null);
DataGridViewDataErrorEventArgs dgvdee = null;
object initialFormattedValue = dataGridViewCell.GetFormattedValue(this.ptCurrentCell.Y, ref dataGridViewCellStyle, DataGridViewDataErrorContexts.Formatting);
this.dataGridViewState1[DATAGRIDVIEWSTATE1_editingControlChanging] = true;
this.dataGridViewState1[DATAGRIDVIEWSTATE1_ignoringEditingChanges] = true;
try
{
dataGridViewCell.InitializeEditingControl(this.ptCurrentCell.Y, initialFormattedValue, dataGridViewCellStyle);
((IDataGridViewEditingControl)this.editingControl).EditingControlValueChanged = false;
}
catch (Exception exception)
{
if (ClientUtils.IsCriticalException(exception))
{
throw;
}
dgvdee = new DataGridViewDataErrorEventArgs(exception, this.ptCurrentCell.X,
this.ptCurrentCell.Y,
DataGridViewDataErrorContexts.InitialValueRestoration);
OnDataErrorInternal(dgvdee);
}
finally
{
this.dataGridViewState1[DATAGRIDVIEWSTATE1_editingControlChanging] = false;
this.dataGridViewState1[DATAGRIDVIEWSTATE1_ignoringEditingChanges] = false;
}
if (dgvdee != null)
{
if (dgvdee.ThrowException)
{
throw dgvdee.Exception;
}
return !dgvdee.Cancel;
}
// Save unedited value so we can restore it later if parsing of new value fails
this.uneditedFormattedValue = initialFormattedValue;
return true;
}
示例2: InitializeEditingControlValue
private bool InitializeEditingControlValue(ref DataGridViewCellStyle dataGridViewCellStyle, DataGridViewCell dataGridViewCell)
{
DataGridViewDataErrorEventArgs e = null;
object initialFormattedValue = dataGridViewCell.GetFormattedValue(this.ptCurrentCell.Y, ref dataGridViewCellStyle, DataGridViewDataErrorContexts.Formatting);
this.dataGridViewState1[0x4000] = true;
this.dataGridViewState1[0x200] = true;
try
{
dataGridViewCell.InitializeEditingControl(this.ptCurrentCell.Y, initialFormattedValue, dataGridViewCellStyle);
((IDataGridViewEditingControl) this.editingControl).EditingControlValueChanged = false;
}
catch (Exception exception)
{
if (System.Windows.Forms.ClientUtils.IsCriticalException(exception))
{
throw;
}
e = new DataGridViewDataErrorEventArgs(exception, this.ptCurrentCell.X, this.ptCurrentCell.Y, DataGridViewDataErrorContexts.InitialValueRestoration);
this.OnDataErrorInternal(e);
}
finally
{
this.dataGridViewState1[0x4000] = false;
this.dataGridViewState1[0x200] = false;
}
if (e != null)
{
if (e.ThrowException)
{
throw e.Exception;
}
return !e.Cancel;
}
this.uneditedFormattedValue = initialFormattedValue;
return true;
}