C#
古巴与八股
未来的相视一笑 只因曾经的全然相爱
展开
-
C#调用C++DLL,及回调函数、string参数传递的总结
Int型传入:Dll端:extern "C" __declspec(dllexport)int Add(inta, int b){ return a+b;}C#端:[DllImport("aeClient2.0.dll",CallingConvention =CallingConvention原创 2016-11-29 18:30:12 · 9185 阅读 · 0 评论 -
c# dataGridView 序号自动递增
在datagridview上显示行号1,先在加入如下代码private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e) { Rectangle rectangle = new Rectangle(e.RowBounds.Loca转载 2016-12-07 13:35:47 · 7189 阅读 · 0 评论 -
C# 在dataGridView中行首或行尾手动添加记录、修改一行记录(1.行尾添加,非数据库连接形式 2.修改某一行的数据 3.插入行首,不覆盖行首)
1. 在行尾添加新的一行数据DataGridViewRow row = new DataGridViewRow();row.CreateCells(dataGridView1);row.Cells[0].Value = 23;row.Cells[1].Value = 45;this.dataGridView1.Rows.Add(row);2. 在行位添加,会覆盖掉行首原创 2016-12-07 13:43:31 · 1975 阅读 · 2 评论