上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: 委托的定义为: delegate void Hello(string str); 这种是默认写法, 微软根据有参数与无参数委托做出了,两种定义委托的常用写法, Action , func. 这两个都是委托. 第一个是无参无返回值的委托. 第二个是有参数有返回值的委托. 委托的写法还有: 匿名函数. 阅读全文
posted @ 2023-08-10 12:44 吖水的程序路 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Cannot find one or more components. Please reinstall the application 启动Microsoft SQL Server Management Studio 失败,出现cannot find one or more components错 阅读全文
posted @ 2023-08-10 10:34 吖水的程序路 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 绑定有两种模式: 一种是在app 类中继承了: PrismApplication 在ConfigureViewModelLocator 方法中使用显式指定绑定关系 protected override void ConfigureViewModelLocator() { base.Configure 阅读全文
posted @ 2023-03-23 13:04 吖水的程序路 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 该库需要使用到vs C++. 为啥会构建失败? 是因为没有在系统变量处配置cmake构建生成器的路径 vs c++ 2014需要下载微软的开发工具包. 勾选c++的桌面开发进行下载安装 需要在环境变量的path中,加入在vs文件夹下的cmake路径.如下: 加上路径后,确保在python的包列表里没 阅读全文
posted @ 2023-03-11 13:20 吖水的程序路 阅读(1753) 评论(0) 推荐(0) 编辑
摘要: 1: 关于sqlserver的远程连接. 这个连接更在webConfig中配置的一样, 需要加上1433端口. 在sqlserver 在是以逗号作为分割. 远程连接自然要带上服务器的ip地址. 2: 关于权限分配. 方法一: 使用sql 语句执行 分配操作 授予Shema dbo下对象的定义权限给某 阅读全文
posted @ 2022-12-01 11:07 吖水的程序路 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 使用全局有时候不生效,不好用 直接使用 镜像映射 pip install akshare -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host=mirrors.aliyun.com --upgrade 试了几个库都飞快的 阅读全文
posted @ 2022-11-30 17:09 吖水的程序路 阅读(135) 评论(0) 推荐(0) 编辑
摘要: pyqt5的开发手册 https://mp.weixin.qq.com/s/Wy1iTYoX7_O81ChMflXXfg https://www.cnblogs.com/archisama/p/5442071.html python -m pyqtgraph.examples 阅读全文
posted @ 2022-11-23 15:01 吖水的程序路 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 存储过程中的 选择 结果映射 SELECT (case when MainType ='SBDJ' then '123' when MainType ='SBGL' then '设备管理' end) as 'name', MainType, SubTypeName FROM tb_SYS_DD as 阅读全文
posted @ 2022-11-22 16:54 吖水的程序路 阅读(14) 评论(0) 推荐(0) 编辑
摘要: Windows 平台下:首先,需要在user用户目录下,创建一个新的文件夹pip;再在pip文件夹内建立一个文件pip.txt的文件, 以下内容写入文本中即可[global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple [install] 阅读全文
posted @ 2022-11-21 15:44 吖水的程序路 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 在控制面板的卸载程序中, 卸载电脑的默认VC_redist.x64 重新下载安装 运行环境包VC_redist.x64 https://learn.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist?view=msvc-170 此包为 阅读全文
posted @ 2022-11-16 16:46 吖水的程序路 阅读(195) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 13 下一页