悉野小楼

导航

2023年10月13日

winform窗口使用已经添加的图标

摘要: 1.项目属性窗口, 选择资源, 添加资源, 选择想要导入的ico图标, 设置好名字, 如my. 2.修改form窗口代码 public Form1() { InitializeComponent(); this.Icon = Resources.ResourceManager.GetObject(" 阅读全文

posted @ 2023-10-13 15:42 悉野 阅读(195) 评论(0) 推荐(0) 编辑

python学习笔记3 文件操作 遍历目录, 列出文件名

摘要: import os def listDir(curPath, pixLen): list = [] # print("当前路径:" + curPath) files = os.listdir(curPath) for path in files: fullPath = os.path.join(cu 阅读全文

posted @ 2023-10-13 11:13 悉野 阅读(33) 评论(0) 推荐(0) 编辑