Windows开发-月排行
在开发SilverLight时,弹窗一直都是用的回调方式,比如需要用户确认才能继续操作的,如果有好几个确认步骤,这时候回调函数就比较深了,代码基本看不懂,可以使用TaskCompletionSource把事件改为异步等待方法,全部改成同步的写法,爽的飞起。 关键代码 [Flags] public e ...
分类:Windows开发 时间:2020-06-29 16:10:19 收藏:0 阅读:114
1、MSVC编译的库是xxx.dll和xxx.lib,MingW编译的库是libxxx.dll和libxxx.dll.a 其中lib文件和.a文件一般都是对dll的引导;或者是包含了所有的源码,作用和dll一样 2、Qt调用msvc的dll INCLUDEPATH += C:/Users/Admin ...
分类:Windows开发 时间:2020-06-30 21:32:18 收藏:0 阅读:101
QQ头像 http://q2.qlogo.cn/headimg_dl?dst_uin=QQ号&spec=100 QQ网名 http://users.qzone.qq.com/fcg-bin/cgi_get_portrait.fcg?uins=QQ号 http://r.qzone.qq.com/fcg ...
分类:Windows开发 时间:2020-07-02 12:04:31 收藏:0 阅读:96
在工作中经常会需要将视频转换格式,比如将优酷下载的.kux格式转换成MP4格式,以前可以用优酷视频客户端的转码功能来转换,但是现在优酷下架了转码功能,就需要其他方法了。 这里使用ffmpeg工具转换,步骤如下: 1,安装ffmpeg ①,首先下载ffmpeg的windows版: https://ff ...
分类:Windows开发 时间:2020-07-06 12:33:42 收藏:0 阅读:131
不停的往Memo中输出文本信息,满1000行就clear运行大概一分多钟就会出错,捕捉到的出错信息如下:Outof system resourcesTScrollingStyleHook.TScrollWindow:句柄无效TScrollingStyleHook.TScrollWindow:拒绝访问 ...
分类:Windows开发 时间:2020-07-06 16:47:16 收藏:0 阅读:211
一、准备 1、 win10 2 、Anaconda:Anaconda3-5.2.0-Windows-x86_64.exe(推荐) 官网地址:https://www.anaconda.com/download/(一般都是最新版,不推荐使用) 推荐地址:https://repo.continuum.io ...
分类:Windows开发 时间:2020-07-12 11:41:38 收藏:0 阅读:175
{ "$schema": "https://aka.ms/terminal-profiles-schema", "alwaysShowTabs" : true, "defaultProfile" : "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2530}", "initial ...
分类:Windows开发 时间:2020-07-21 22:26:13 收藏:0 阅读:194
/// <summary> /// CRC计算 /// </summary> /// <param name="arr">源数据</param> /// <param name="seat">开始位置</param> /// <param name="len">长度</param> /// <ret ...
分类:Windows开发 时间:2020-07-22 14:31:59 收藏:0 阅读:93
背景:近期项目中给第三方提供接口,由于之前没有沟通,接口返回值字段命名全部采用帕斯卡命名,但APP端要求驼峰命名。那么面临所有的返回值字段都需要调整,已经开发了一半的接口,改动工作量还是挺大的。那有没有更好的解决方案呢? 答案:肯定是有的。 1. 回顾C#各种命名规范(简述) Pascal规则(帕斯 ...
分类:Windows开发 时间:2020-07-23 21:43:56 收藏:0 阅读:251
保姆级课程,带你成功在 Win7 电脑上安装 Wireshark + npcap,并且支持抓取 127.0.0.1 本地环回地址的包 ...
分类:Windows开发 时间:2020-07-24 14:55:53 收藏:0 阅读:124
访问:http://localhost:xxxx/swagger/v1/swagger.json 错误:NotSupportedException: Ambiguous HTTP method for action - Api.Controllers.IdentityController.Get ( ...
分类:Windows开发 时间:2020-07-24 18:05:18 收藏:0 阅读:116
注:博主看着另外一个博主的博客才有下面的一些总结,有兴趣可以看一下:https://blog.csdn.net/qq_39930578/article/details/87897257 每个相机基本都有自己带的SDK 初学者看一下自己后期需要使用到什么相机就学那个列:海康、巴勒斯......前提是相 ...
分类:Windows开发 时间:2020-07-28 22:03:41 收藏:0 阅读:278
AcWing 837. 连通块中点的数量 #include <bits/stdc++.h> using namespace std; const int N=1e6+10; int n,m; int p[N],num[N]; //返回x集合所在的集合+路径压缩 int find(int x){ if ...
分类:Windows开发 时间:2020-07-29 23:47:07 收藏:0 阅读:159
前言 昨天刚搞定了DevExpress,今天就遇到了之前遇到过的一个问题,那就是WinForm在高分辨率下界面模糊。我的开发环境是Windows10 64位和VS2010,电脑屏幕分辨率为1920*1080,采用的是WinForm程序设计方法开发。在程序运行时遇到了这样一个问题,在VS设计的很清晰的 ...
分类:Windows开发 时间:2020-08-01 12:16:18 收藏:0 阅读:131
win10安装和使用wiresharkhttps://blog.csdn.net/qq_34732729/article/details/105126146https://blog.csdn.net/Enderman_xiaohei/article/details/99441895https://w ...
分类:Windows开发 时间:2020-08-03 23:47:24 收藏:0 阅读:176
原因 在学习python界面图形PySide2,正常安装后出现报错 报错内容 qt.qpa.plugin: Could not load the Qt platform plugin "windows" in "" even though it ... 解决 将如下文件 \Anaconda3\Lib ...
分类:Windows开发 时间:2020-08-04 11:51:38 收藏:0 阅读:558
//对字符进行UrlEncode编码 string text= System.Web.HttpUtility.UrlEncode("heart", System.Text.Encoding.UTF8); //对字符进行UrlDecode解码 string data = System.Web.Http ...
分类:Windows开发 时间:2020-08-12 19:03:06 收藏:0 阅读:126
原文:https://blog.csdn.net/weixin_40607008/article/details/98471293 问题背景: 在开发或者做实验的过程中,我们经常会用到远程服务器或者Github的项目,而我服务器上的项目只能在Jupyter Notebook上编写(或许可以在其他ID ...
分类:Windows开发 时间:2020-08-13 09:20:41 收藏:0 阅读:364
AnyCAD2020+VS2012 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.L ...
分类:Windows开发 时间:2020-08-14 23:24:06 收藏:0 阅读:176
问题来源 因为笔者想用GCC编译器进行Windows下的C语言编程,安装了Mingw-w64的x86_64-posix-seh版本,并按照Visual Studio Code官方的教程,将Mingw-w64的bin目录正确添加到了环境变量path中,cmd下可调用gcc、gdb等指令。 后来又遇到多 ...
分类:Windows开发 时间:2020-08-18 14:45:19 收藏:0 阅读:168
12342352362372384851
上一页97009下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!