本文整理汇总了C#中System.Windows.Forms.DataGridViewCellEventArgs.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# DataGridViewCellEventArgs.ToString方法的具体用法?C# DataGridViewCellEventArgs.ToString怎么用?C# DataGridViewCellEventArgs.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.DataGridViewCellEventArgs
的用法示例。
在下文中一共展示了DataGridViewCellEventArgs.ToString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: gridView_CellValueChanged
//handles when a user changes a cell's value
void gridView_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
Console.WriteLine("Cell value changed " + e.RowIndex + " " + e.ColumnIndex + " " + e.ToString());
//print the compound that has changed
Console.WriteLine("Compound info for changed row " + currentSynthesis.AllCompounds[e.RowIndex].ToString());
}
示例2: DgvTerma_CellClick
private void DgvTerma_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex == 4)
{
MessageBox.Show(e.ToString());
//MessageBox.Show((e.RowIndex + 1).ToString() + " Row Clicked");
}
}
示例3: dataGridView4_RowValidated
private void dataGridView4_RowValidated(object sender, DataGridViewCellEventArgs e)
{
try
{
for (int i = 0; i < dataGridView4.Rows.Count - 1; i++)
{
if (dataGridView4.Rows[i].Cells[3].Value.ToString() != "")
{
if (Convert.ToInt16(dataGridView4.Rows[i].Cells[3].Value.ToString()) >= 0 && Convert.ToInt16(dataGridView4.Rows[i].Cells[3].Value.ToString()) <= 3)
{
if (Convert.ToInt16(dataGridView4.Rows[i].Cells[7].Value.ToString()) >= 0 && Convert.ToInt16(dataGridView4.Rows[i].Cells[7].Value.ToString()) <= 1)
{
if (Convert.ToInt16(dataGridView4.Rows[i].Cells[8].Value.ToString()) >= 0 && Convert.ToInt16(dataGridView4.Rows[i].Cells[8].Value.ToString()) <= 1)
{
MySqlCommand update = login.connection.CreateCommand();
update.CommandText = "update aitimata set [email protected],[email protected],[email protected],[email protected],[email protected] where [email protected]";
update.Parameters.AddWithValue("@proodos", dataGridView4.Rows[i].Cells[3].Value.ToString());
update.Parameters.AddWithValue("@sxolia", System.Text.Encoding.UTF8.GetBytes(dataGridView4.Rows[i].Cells[4].Value.ToString()));
update.Parameters.AddWithValue("@titlos", System.Text.Encoding.UTF8.GetBytes(dataGridView4.Rows[i].Cells[2].Value.ToString()));
update.Parameters.AddWithValue("@id", dataGridView4.Rows[i].Cells[0].Value.ToString());
update.Parameters.AddWithValue("@eidopoihsh", dataGridView4.Rows[i].Cells[7].Value.ToString());
update.Parameters.AddWithValue("@apotelesma", dataGridView4.Rows[i].Cells[8].Value.ToString());
update.ExecuteNonQuery();
}
else
{
MessageBox.Show("Παρακαλώ δώστε τιμές από 0 εως 1 για ολοκλήρωση.", "Προσοχή", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
else
{
MessageBox.Show("Παρακαλώ δώστε τιμές από 0 1 για ειδοποίηση.", "Προσοχή", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
else
{
MessageBox.Show("Παρακαλώ δώστε τιμές από 0 εως 3 για πρόοδο και 0 εως 1 για ολοκλήρωση και ειδοποίηση.", "Προσοχή", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
}
catch (Exception exp)
{
Console.Write(e.ToString());
}
}