摘要:
DataGridView.AutoGenerateColumns 获取或设置一个值,该值指示是否为数据源中的每一字段自动创建 BoundColumn 对象并在 DataGrid 控件中显示这些对象。 将AutoGenerateColumns 设置为False就不会自动生成列 dataGridView 阅读全文
摘要:
实现POST网络请求方法 public static string HttpPost(string url,string postDataStr) { string strReturn; //在转换字节时指定编码格式 byte[] byteData = Encoding.UTF8.GetBytes( 阅读全文