先来个简单的例子RelayCommand(() => this.AddPerson(), () => this.CanAddPerson()); 可以翻译为 RelayCommand(参数一, 参数二); 参数一 :() => this.AddPerson() 参数二 :() => this.Can ...
分类:
Windows开发 时间:
2020-12-24 17:02:44
收藏:
0 评论:
0 赞:
0 阅读:
25
参考资料: https://zhuanlan.zhihu.com/p/92578711 https://github.com/openai/gym/issues/1726 https://blog.csdn.net/qq_27297393/article/details/105349229 先说一下 ...
分类:
Windows开发 时间:
2020-12-24 16:55:46
收藏:
0 评论:
0 赞:
0 阅读:
97
Win10 子系统安装 更新WSL2需要Windows10版本2004且内部版本高于19041。 安装过程可参考 https://blog.csdn.net/qq_33306246/article/details/107367629 图形桌面安装 安装过程可参考https://zhuanlan.zh ...
分类:
Windows开发 时间:
2020-12-24 12:34:51
收藏:
0 评论:
0 赞:
0 阅读:
93
SqlSessionFactoryBuilder:该对象负责根据MyBatis配置文件SqlMapConfig.xml构建SqlSessionFactory实例 SqlSessionFactory:每一个MyBatis的应用程序都以一个SqlSessionFactory对象为核心。该对象负责创建Sq ...
分类:
Windows开发 时间:
2020-12-24 12:33:27
收藏:
0 评论:
0 赞:
0 阅读:
26
添加最大连接端口: reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters" /v "MaxUserPort" /d "65534" /t REG_DWORD /f reg add "HKEY_LO ...
分类:
Windows开发 时间:
2020-12-24 12:07:50
收藏:
0 评论:
0 赞:
0 阅读:
34
一、前言 技术没有先进与落后,只有合适与不合适。 在程序当中,经常有耗时较长的操作,为了给用户更好的体验,就需要给用户一个及时的反馈,这种时候就需要用到进度等待窗口。 实现进度等待窗口的技术有很多,比如:BackgroundWorker、Thread等。 不过技术不是难点,难点在于怎么使等待窗口美观 ...
分类:
Windows开发 时间:
2020-12-24 12:05:50
收藏:
0 评论:
0 赞:
0 阅读:
40
开机后一般要打开一系列应用程序,以开始一天的工作,像我的话,要打开微信、QQ、edge浏览器、vscode、还有wps,一个个点就太麻烦了,所以今天搜了下怎么写Windows下的简单脚本,自动化执行这些程序! 注意保存时,要改后缀名为.bat,然后编码改为ANSI,如果用utf-8编码,则会出现中文 ...
分类:
Windows开发 时间:
2020-12-24 12:04:07
收藏:
0 评论:
0 赞:
0 阅读:
25
Dubbo admin 在Windows下的安装和服务发现 29/100 发布文章 qq_36263268 未选择任何文件 系统环境以及使用版本: Windows 10 maven 3.6.3 zookeeper 3.6.2 dubbo 2.6.6 1.开启zookeeper zookeeper下载 ...
分类:
Windows开发 时间:
2020-12-24 12:02:30
收藏:
0 评论:
0 赞:
0 阅读:
31
Difficulty: Hard Related Topics: Hash Table, Two Pointers, String, Sliding Window Link: https://leetcode.com/problems/minimum-window-substring/ Descri ...
分类:
Windows开发 时间:
2020-12-24 12:01:22
收藏:
0 评论:
0 赞:
0 阅读:
28
在Prometheus服务器上的/api/v1下可以访问当前稳定的HTTP API。 将在该端点下添加任何非中断添加项。 一、格式概述 这个API返回是JSON格式。每个请求成功的返回值都是以2xx开头的编码。 到达API处理的无效请求,返回一个JSON错误对象,并返回下面的错误码: 400 Bad ...
分类:
Windows开发 时间:
2020-12-24 12:00:23
收藏:
0 评论:
0 赞:
0 阅读:
24
翻译、总结自How to debug binding in WPF、Debug Databinding Issues in WPF、How to debug WPF bindings、Debugging Data Bindings in a WPF or Silverlight Applicatio ...
分类:
Windows开发 时间:
2020-12-24 12:00:01
收藏:
0 评论:
0 赞:
0 阅读:
25
Windows系统是美国微软公司开发的电脑操作系统,经过不断的升级换代,已经推出了很多个版本。其中Windows7系统是一个比较受欢迎的操作系统,但是在使用win7系统便笺软件的时候,有时候会出现打不开的情况,win7便笺打不开怎么办? Windows7系统中有一个比较实用的小工具软件,它就是便笺, ...
分类:
Windows开发 时间:
2020-12-24 09:21:13
收藏:
0 评论:
0 赞:
0 阅读:
48
前言 谈起“消息机制”这个词,我们都会想到Windows的消息机制,系统将键盘鼠标的行为包装成一个Windows Message,然后系统主动将这些Windows Message派发给特定的窗口,实际上消息是被Post到特定窗口所在线程的消息队列,应用程序的消息循环再不断的从消息队列当中获取消息,然 ...
分类:
Windows开发 时间:
2020-12-24 09:20:49
收藏:
0 评论:
0 赞:
0 阅读:
31
Windows Command Line - Introduction to Files and Directory Rebooting the system using cmd and powershell cmd commands: shutdown -r Restart-Computer -d ...
分类:
Windows开发 时间:
2020-12-24 00:53:14
收藏:
0 评论:
0 赞:
0 阅读:
29
什么是异步编程呢?举个简单的例子: using System.Net.Http; using System.Threading.Tasks; using static System.Console; namespace Core { class Async { static void Main() ...
分类:
Windows开发 时间:
2020-12-23 19:22:13
收藏:
0 评论:
0 赞:
0 阅读:
50
ipcmain.js var {ipcMain,BrowserWindow} =require('electron'); var path=require('path'); var win=null; //接收到广播 ipcMain.on('openWindow',function(event,ai ...
分类:
Windows开发 时间:
2020-12-23 16:56:55
收藏:
0 评论:
0 赞:
0 阅读:
191
今天,我们将研究如何创建交互式PDF表单,以评估Delphi和Lazarus中的人力资源采访。 ...
分类:
Windows开发 时间:
2020-12-23 16:55:21
收藏:
0 评论:
0 赞:
0 阅读:
46
https://www.jianshu.com/p/eacfc0a9f2fd 安装软件ffmpeg+liveqing liveqing管理地址:http://localhost:10080/#/live/open/list/1 本地音频: D:\ffmpeg\bin\ffmpeg -f dshow ...
分类:
Windows开发 时间:
2020-12-23 16:54:55
收藏:
0 评论:
0 赞:
0 阅读:
93
1、下载扩展库,下载链接如下: https://pecl.php.net/package/redis 选择 DLL 选项进行下载。 2、下载后解压把 php_redis.dll 文件复制到 PHP 安装目录下的 ext 目录里面 3、在 php.ini 文件加入一下代码 extension=php_ ...
分类:
Windows开发 时间:
2020-12-23 15:07:07
收藏:
0 评论:
0 赞:
0 阅读:
37
接着上一篇 点击链接加入群聊 在使用过程中当应用太多很难快速的找到并定位到自己所需要使用的应用,所以此次做了更新方便快速查找应用。 【update】1、输入应用首字的首字母定位。 键盘按下 KeyDown 定义ScrollViewer 所需要滚动值 double offset = 0.0;。 定义 ...
分类:
Windows开发 时间:
2020-12-23 12:45:50
收藏:
0 评论:
0 赞:
0 阅读:
30