摘要: 1. 清除单元格选择 DataGridView.ClearSelection(); 效果 2.单元格灰显 // 单元格设为只读 DataGridView.ReadOnly = true; // 表格背景色 DataGridView.BackgroundColor = SystemColors::Co 阅读全文
posted @ 2024-10-26 20:44 小松鼠树懒 阅读(22) 评论(0) 推荐(0) 编辑
摘要: using namespace System; using namespace System::Threading; namespace NNNN { public ref class TTTT { static Thread^ t1; static Thread^ t2; void fun() { 阅读全文
posted @ 2024-10-26 20:40 小松鼠树懒 阅读(2) 评论(0) 推荐(0) 编辑
摘要: bool WriteExcelFile_OfficeInterop(String^ path, DataSet^ dt, const std::vector<std::string>& sheetName, bool hideColumnName) { // If the file already 阅读全文
posted @ 2024-10-26 20:37 小松鼠树懒 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 1、发送请求体时 前端 axios的delete和post/put在传值上有点区别 post和put有三个参数,url,data和config,所以在使用这两个时,可以写成 axios.post(api,{ id:1 }); axios.put(api,{ id:1 }); 第二个参数{id:1}会 阅读全文
posted @ 2024-10-26 20:35 小松鼠树懒 阅读(24) 评论(0) 推荐(0) 编辑