2024年4月8日

Linux 设置路由

摘要: route add -net 192.168.106.0/24 gw 170.20.18.3 em1 添加奇怪的路由必须指定gateway例如: route add -net 192.168.100.0/24 gw 10.10.10.1 如果只指定device 可能路由没有效果, 比如上面的路由不设 阅读全文

posted @ 2024-04-08 21:46 norsd 阅读(4) 评论(0) 推荐(0) 编辑

Visual Studio Code 隐藏特定文件

摘要: 在setting.json中添加如下代码 "files.exclude": { "**/.git": true, "**/.svn": true, "**/.hg": true, "**/CVS": true, "**/.DS_Store": true, "**/__pycache__":true 阅读全文

posted @ 2024-04-08 09:05 norsd 阅读(6) 评论(0) 推荐(0) 编辑

C# ComboBox 使用 DataSource SelectedIndex无法设置的问题

摘要: 在C#中如下代码 var cbo = new ComboBox(); cbo.DropDownStyle = ComboBoxStyle.DropDownList; var cbo.DataSource = new int[]{1, 2, 3}; cbo.SelectedIndex = 0; cbo 阅读全文

posted @ 2024-04-08 07:05 norsd 阅读(32) 评论(0) 推荐(0) 编辑

导航