本文整理汇总了C#中System.Windows.Forms.DataGridViewCell.GetFormattedValue方法的典型用法代码示例。如果您正苦于以下问题:C# DataGridViewCell.GetFormattedValue方法的具体用法?C# DataGridViewCell.GetFormattedValue怎么用?C# DataGridViewCell.GetFormattedValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.DataGridViewCell
的用法示例。
在下文中一共展示了DataGridViewCell.GetFormattedValue方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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;
}
示例3: InitializeEditingCellValue
// Returns true for success, returns false when the OnDataError event cancels the operation.
private bool InitializeEditingCellValue(ref DataGridViewCellStyle dataGridViewCellStyle, ref DataGridViewCell dataGridViewCell)
{
DataGridViewDataErrorEventArgs dgvdee = null;
// Save unedited value so we can restore it later if parsing of new value fails
this.uneditedFormattedValue = dataGridViewCell.GetFormattedValue(this.ptCurrentCell.Y, ref dataGridViewCellStyle, DataGridViewDataErrorContexts.Formatting);
this.dataGridViewState1[DATAGRIDVIEWSTATE1_ignoringEditingChanges] = true;
try
{
IDataGridViewEditingCell dataGridViewEditingCell = dataGridViewCell as IDataGridViewEditingCell;
Debug.Assert(dataGridViewEditingCell != null);
object currentFormattedValue = dataGridViewEditingCell.GetEditingCellFormattedValue(DataGridViewDataErrorContexts.Formatting);
if ((currentFormattedValue == null && this.uneditedFormattedValue != null) ||
(currentFormattedValue != null && this.uneditedFormattedValue == null) ||
(currentFormattedValue != null && !this.uneditedFormattedValue.Equals(currentFormattedValue)))
{
Debug.Assert(this.ptCurrentCell.X == dataGridViewCell.ColumnIndex);
dataGridViewCell = this.Rows[this.ptCurrentCell.Y].Cells[this.ptCurrentCell.X]; // unshare the edited cell
dataGridViewEditingCell = dataGridViewCell as IDataGridViewEditingCell;
dataGridViewEditingCell.EditingCellFormattedValue = this.uneditedFormattedValue;
dataGridViewEditingCell.EditingCellValueChanged = 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_ignoringEditingChanges] = false;
}
if (dgvdee != null)
{
if (dgvdee.ThrowException)
{
throw dgvdee.Exception;
}
return !dgvdee.Cancel;
}
return true;
}
示例4: InitializeEditingCellValue
private bool InitializeEditingCellValue(ref DataGridViewCellStyle dataGridViewCellStyle, ref DataGridViewCell dataGridViewCell)
{
DataGridViewDataErrorEventArgs e = null;
this.uneditedFormattedValue = dataGridViewCell.GetFormattedValue(this.ptCurrentCell.Y, ref dataGridViewCellStyle, DataGridViewDataErrorContexts.Formatting);
this.dataGridViewState1[0x200] = true;
try
{
IDataGridViewEditingCell cell = dataGridViewCell as IDataGridViewEditingCell;
object editingCellFormattedValue = cell.GetEditingCellFormattedValue(DataGridViewDataErrorContexts.Formatting);
if ((((editingCellFormattedValue == null) && (this.uneditedFormattedValue != null)) || ((editingCellFormattedValue != null) && (this.uneditedFormattedValue == null))) || ((editingCellFormattedValue != null) && !this.uneditedFormattedValue.Equals(editingCellFormattedValue)))
{
dataGridViewCell = this.Rows[this.ptCurrentCell.Y].Cells[this.ptCurrentCell.X];
cell = dataGridViewCell as IDataGridViewEditingCell;
cell.EditingCellFormattedValue = this.uneditedFormattedValue;
cell.EditingCellValueChanged = 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[0x200] = false;
}
if (e == null)
{
return true;
}
if (e.ThrowException)
{
throw e.Exception;
}
return !e.Cancel;
}