地址 https://www.acwing.com/problem/content/description/243/ 在完成了分配任务之后,西部314来到了楼兰古城的西部。 相传很久以前这片土地上(比楼兰古城还早)生活着两个部落,一个部落崇拜尖刀(‘V’),一个部落崇拜铁锹(‘∧’),他们分别用V和 ...
分类:
Windows开发 时间:
2020-01-07 16:32:23
收藏:
0 评论:
0 赞:
0 阅读:
103
program ScriptRenameZL; uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, TypInfo, ToolsAPI,CnCommon, CnWizUtils,CnWizIde ...
分类:
Windows开发 时间:
2020-01-07 16:05:12
收藏:
0 评论:
0 赞:
0 阅读:
92
熊大妈的奶牛在小沐沐的熏陶下开始研究信息题目。 小沐沐先让奶牛研究了最长上升子序列,再让他们研究了最长公共子序列,现在又让他们研究最长公共上升子序列了。 小沐沐说,对于两个数列A和B,如果它们都包含一段位置不一定连续的数,且数值是严格递增的,那么称这一段数是两个数列的公共上升子序列,而所有的公共上升 ...
分类:
Windows开发 时间:
2020-01-07 16:00:58
收藏:
0 评论:
0 赞:
0 阅读:
81
.Net Core 运行环境部署 安装运行环境 https://dotnet.microsoft.com/download/dotnet-core/current/runtime 下载安装完成后 运行cmd 输入dotnet --version 如果系统提示如下 安装c++环境 https://ww ...
分类:
Windows开发 时间:
2020-01-07 15:56:58
收藏:
0 评论:
0 赞:
0 阅读:
298
window下用taskkill杀死进程 摘自:https://www.cnblogs.com/wangzhaobo/p/9200743.html TASKKILL [/S system [/U username [/P [password]]]] { [/FI filter] [/PID proc ...
分类:
Windows开发 时间:
2020-01-07 15:45:57
收藏:
0 评论:
0 赞:
0 阅读:
111
static class Program { private static Boolean lockState = false; //保存当前的锁定状态 private static System.Windows.Forms.Timer appTimer = new Timer(); //计时器 p ...
分类:
Windows开发 时间:
2020-01-07 15:43:35
收藏:
0 评论:
0 赞:
0 阅读:
177
前言:因业务需要对WPF中的DataGrid控件中的行数进行统计,同时把统计的行数显示在列标题上。 如果我们用常规的Binding手段更新DataGridTextColunm的Header的话是不会生效的,因为WPF中视觉树中没有DataGridTextColumn元素来映射它(DataGridTe ...
分类:
Windows开发 时间:
2020-01-07 14:37:16
收藏:
0 评论:
0 赞:
0 阅读:
104
原文:WPF ComboBox 默认选中无效 在WPF开发当中,我发现ComboBox的默认选中逻辑失效了,仔细查找后发现后台逻辑并没有出现问题。 测试后发现在XAML中,ComBoBox控件的SelectedValue属性需要写在ItemSource之前,默认选中又恢复正常了。 ...
分类:
Windows开发 时间:
2020-01-07 14:36:36
收藏:
0 评论:
0 赞:
0 阅读:
88
function goupdathyzt(sqid, zt) { $.ajax({ async: false, url: "http://localhost:17298/api/aaa/sss", type: "get", //必填 contentType: "application/json; c ...
分类:
Windows开发 时间:
2020-01-07 14:35:24
收藏:
0 评论:
0 赞:
0 阅读:
241
转载:https://blog.csdn.net/qq_28189423/article/details/82380040 Windows Server2008服务器ping不通问题解决原创大脑补丁 发布于2017-10-13 09:14:17 阅读数 33679 收藏展开前言:Windows Se ...
分类:
Windows开发 时间:
2020-01-07 14:09:01
收藏:
0 评论:
0 赞:
0 阅读:
97
原文:WPF DataGrid标题Header Binding失效 前言:因业务需要对WPF中的DataGrid控件中的行数进行统计,同时把统计的行数显示在列标题上。 如果我们用常规的Binding手段更新DataGridTextColunm的Header的话是不会生效的,因为WPF中视觉树中没有D... ...
分类:
Windows开发 时间:
2020-01-07 14:03:37
收藏:
0 评论:
0 赞:
0 阅读:
82
原文:WPF 窗体快捷键(热键) 前言:在WPF项目开发当中,遇到了需要用到快捷键的需求,于是对热键做了一个快速学习,但是这方面的资源很少。。。 热键大致分为三种场景,下面用QQ的使用场景举例: 全局热键:QQ的Ctrl+Alt+A截图。 焦点热键:QQ消息栏的Shift+Enter文本换行。 窗体... ...
分类:
Windows开发 时间:
2020-01-07 13:50:32
收藏:
0 评论:
0 赞:
0 阅读:
106
场景 在C#中检索本地计算机所有服务时,使用 System.ServiceProcess.ServiceController[] services = System.ServiceProcess.ServiceController.GetServices(); 报错 注: 博客主页: https:/ ...
分类:
Windows开发 时间:
2020-01-07 13:24:21
收藏:
0 评论:
0 赞:
0 阅读:
85
Web Storage API 提供了存储机制,通过该机制,浏览器可以安全地存储键值对,比使用 cookie 更加直观。 参考:https://developer.mozilla.org/zh CN/docs/Web/API/Web_Storage_API/Using_the_Web_Storage ...
分类:
Windows开发 时间:
2020-01-07 13:02:03
收藏:
0 评论:
0 赞:
0 阅读:
98
自定义webapi的路由规则,控制到action跨域设置:(服务端)webconfig文件中,system.webServer节点下添加 <!--跨域请求:三个配置信息--> <httpProtocol> <customHeaders> <!--响应类型 (值为逗号分隔的一个字符串,表明服务器支持的 ...
分类:
Windows开发 时间:
2020-01-07 11:15:30
收藏:
0 评论:
0 赞:
0 阅读:
93
I have a function extracted from a delphi dll Struct 1 is made up of : Moreover struct2 is made up of: Now using C# i am trying to pass a same time of ...
分类:
Windows开发 时间:
2020-01-07 10:54:03
收藏:
0 评论:
0 赞:
0 阅读:
97
wind10系统1909以下版本 主要是因显卡与兼容性导致,最新版OBS应该不存在兼容问题。 显卡问题 笔记本双显卡分为集显和核显,用于输出显示器的显卡为集显 右键 NVIDIA控制面板 管理3D设置 程序设置 选择obs 选择集成显卡 应用 注意: 右键没有NVIDIA控制面板可打开控制面板,硬件 ...
分类:
Windows开发 时间:
2020-01-07 10:09:08
收藏:
0 评论:
0 赞:
0 阅读:
162
create table City ( Id int identity, Name varchar(30), Pid int , ) MVC显示页面 @{ ViewBag.Title = "Index"; } @using MVC.Models; <h2>Index</h2> <div id="se ...
分类:
Windows开发 时间:
2020-01-07 10:08:25
收藏:
0 评论:
0 赞:
0 阅读:
144
很老的项目中的代码,现在也想不起来为什么要这么写了。 ...
分类:
Windows开发 时间:
2020-01-07 09:49:18
收藏:
0 评论:
0 赞:
0 阅读:
96
``` Get-Service winrm -Verbose $winrmService=Get-CimInstance -ClassName win32_Service |? {$_.Name -eq "winrm"} $id=$winrmService.ProcessId $status=$wi... ...
分类:
Windows开发 时间:
2020-01-07 01:08:30
收藏:
0 评论:
0 赞:
0 阅读:
118