C# WIN 桌面开发 第2页
C# WIN 桌面开发

c# 将datagridview某一列设定为不可编辑或可编辑

this.indexDataGridView1.Columns[1].ReadOnly = true; this.indexDataGridView1.Columns[2].ReadOnly = true; this.indexDataGridView1.Columns[3].ReadOnly = true; this.indexDataGridView1....
bpdama的头像-BP大马随笔bpdama3年前
0738

c# 的4种访问修饰符

c# 的4种访问修饰符: private私有的,只在本类中允许访问不能被继承 protected只在本类中允许访问可以被继承 internal可以在本项目中访问可以被继承 public可以在本项目外访问可以被继承 
bpdama的头像-BP大马随笔bpdama3年前
0649