使用CSharp在Windows应用程序中使用DataGridV

使用CSharp在Windows应用程序中使用DataGridV

本文介绍了使用CSharp在Windows应用程序中使用DataGridView的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用按键在数据网格View中进行操作。

我写下以下代码是正确的。

  private   void  datagridView_KeyPress( object  sender,DataGridViewKeyPressEventArgs e)
{


}



以上代码是正确的。

if这是正确的。如果没有,请发送datagridview keypress的代码。

解决方案

How to use Key press in Data Grid View.how to do.
I write the below code it is correct.

private void datagridView_KeyPress(object sender, DataGridViewKeyPressEventArgs e)
       {


       }


the above code is correct.
if it is correct ok. if not please send the code for the datagridview keypress.

解决方案


这篇关于使用CSharp在Windows应用程序中使用DataGridView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-25 21:27