当前位置: 首页>>代码示例>>C#>>正文


C# DataGridViewCellEventArgs.ToString方法代码示例

本文整理汇总了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());
 }
开发者ID:panbaked,项目名称:SynType,代码行数:7,代码来源:TabPageControl.cs

示例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");
     }
 }
开发者ID:daguilae,项目名称:HRM,代码行数:8,代码来源:FrmEvaluacionPsiTerman.cs

示例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());
            }
        }
开发者ID:sarakinos,项目名称:Customers-Support,代码行数:52,代码来源:aitimata.cs


注:本文中的System.Windows.Forms.DataGridViewCellEventArgs.ToString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。