Boost是一个强大的C++第三方库,但是Boost的各种问题实在是很让人蛋疼.我搜到过一篇文章关于LuaBind使用Boost Build管理工具来管理源代码以及编译的博文,其第一句话就是Fuck The Boost!it is the pain of ass! 那个采用Boost Build来编译LuaBind我最后完成了,但是很是蛋疼. 现在又出现了Boost链接的问题,经过多方搜索,以及尝试.个人对Boost 的自动链接机制如下: Boost默认启用自动链接功能,而且是静态链接.它会根据…
把datagridview中的自动排序功能禁用自己收集的两种方法,看看吧①DataGridView中的Columns属性里面可以设置.进入"EditColumns"窗口后,在相应的列属性设置里面把SortMode属性选择为"NotSortable"② for (int i = 0; i < this.dataGridView1.Columns.Count;i++){this.dataGridView1.Columns[i].SortMode…