Windows 7旗舰版属于微软公司开发的Windows 7操作系统系统系列中的功能最高级的版本,除此之外Windows 7操作系统还有简易版、家庭普通版、家庭高级版、专业版、企业版等,旗舰版是所有Windows7系统中是最贵的也是功能最完善的系统。 安装教程:win7安装教程 下载地址:日语版wi ...
分类:
Windows开发 时间:
2020-06-07 10:22:30
收藏:
0 评论:
0 赞:
0 阅读:
74
原文:C# Type.GetConstructor() 根据构造函数参数获取实例对象(一) using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threa... ...
分类:
Windows开发 时间:
2020-06-07 10:14:21
收藏:
0 评论:
0 赞:
0 阅读:
96
原文:C#实现插件的“动态替换” 如果某个"功能"需要动态更新?这种动态更新,可能是需求驱动的,也可能是为了修改 BUG,面对这种场景,如何实现“热插拔”呢?先解释一下“热插拔”:在系统运行过程动态替换某些功能,不用重启系统进程。下面看例子 几种方案 1 脚本化:采用 Iron 或 集成其它脚本引擎... ...
分类:
Windows开发 时间:
2020-06-07 10:10:35
收藏:
0 评论:
0 赞:
0 阅读:
42
今天学习到windows下的tree命令用于打印目录的结构树。用法如下: tree:在当前目录下打印当前目录的目录结构树(不包含目录下的所有文件)。 tree /f:在当前目录下打印当前目录的目录结构树(包含目录下的所有文件)。 如果需要将目录结构树保存到文本文档,可以使用tree /f > out ...
分类:
Windows开发 时间:
2020-06-07 10:00:19
收藏:
0 评论:
0 赞:
0 阅读:
53
原文:C# Activator.CreateInstance 动态创建类的实例(二) using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threadin... ...
分类:
Windows开发 时间:
2020-06-07 09:58:01
收藏:
0 评论:
0 赞:
0 阅读:
61
原文:C# Activator.CreateInstance 动态创建类的实例(一) using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threadin... ...
分类:
Windows开发 时间:
2020-06-07 09:53:09
收藏:
0 评论:
0 赞:
0 阅读:
54
原文:C#中Activator.CreateInstance()方法用法分析 本文实例讲述了C#中Activator.CreateInstance()方法用法。 Activator 类包含特定的方法,用以在本地或从远程创建对象类型,或获取对现有远程对象的引用。C#在类工厂中动态创建类的实例,所使用的... ...
分类:
Windows开发 时间:
2020-06-07 09:50:14
收藏:
0 评论:
0 赞:
0 阅读:
48
Aspose.PDF实现PDF转图片有水印,MoonPdfLib为PDF查看组件。已改造为pdf转换器。 ...
分类:
Windows开发 时间:
2020-06-07 09:43:14
收藏:
0 评论:
0 赞:
0 阅读:
228
笔记本电脑WIN10开热点手机无法连接的问题 请按照下面步骤操作: 1.点击右下角小电脑图标,右击,打开“网路和Internet”设置 先打开移动热点: 打开“更改适配器选项” 双击以太网-》属性-》共享-》允许其他**********-》选择你要PC上共享的连接,我是本地连接12 点击确定,完成共 ...
分类:
Windows开发 时间:
2020-06-07 09:08:03
收藏:
0 评论:
0 赞:
0 阅读:
70
1. 配置axios ``` import axios from 'axios'` ``` 2. 配置根路径 ``` axios.defaults.baseURL = '【接口网址】' axios.interceptors.request.use(config => { // console.log ...
分类:
Windows开发 时间:
2020-06-07 00:15:45
收藏:
0 评论:
0 赞:
0 阅读:
455
window server 2012 域策略 关闭 win10 Windows Defender
分类:
Windows开发 时间:
2020-06-06 23:30:15
收藏:
0 评论:
0 赞:
0 阅读:
93
参考博客:https://blog.csdn.net/cylj102908/article/details/51493800 http://cn.voidcc.com/question/p-kbxvbusf-bmo.html ...
分类:
Windows开发 时间:
2020-06-06 19:07:26
收藏:
0 评论:
0 赞:
0 阅读:
48
ELKF 版本号 及 下载 地址 ElasticSearch 、Kibana、Filebeat、版本号 均为 7.7.0 官方下地址 https://www.elastic.co/cn/ 不推荐 在官网下载 速度太慢了, 建议使用国内 开源镜像地址下 如 华为开源镜像、阿里 等 ,本人在 华为开源镜 ...
分类:
Windows开发 时间:
2020-06-06 19:02:10
收藏:
0 评论:
0 赞:
0 阅读:
106
def upload_file(file_path): ''' :param file_path:上传文件的路径 :return: ''' dialog = win32gui.FindWindow("#32770", "打开") comboxex32 = win32gui.FindWindowEx( ...
分类:
Windows开发 时间:
2020-06-06 18:57:21
收藏:
0 评论:
0 赞:
0 阅读:
218
思路:1、查看该端口被什么软件占用。2、如何找出该软件并且关闭该软件 假设我的1080端口被占用 查看当前进程连接情况:netstat -ano 或者通过下列命令直接定位是哪个软件 通过端口找到对应的pid:netstat -ano | findstr "端口" 通过pid查看指定的进程taskli ...
分类:
Windows开发 时间:
2020-06-06 18:36:04
收藏:
0 评论:
0 赞:
0 阅读:
37
总结:yapi个人空间分组的问题,我暂时不用理睬 他自己自由,但是 不允许他 创建非个人空间的分组。这点留意 避免不统一。所有的分组都必须我自己来创建,不允许他们私自创建。 ...
分类:
Windows开发 时间:
2020-06-06 18:31:41
收藏:
0 评论:
0 赞:
0 阅读:
205
yapi ,分为超级管理员和 分组组长和项目组长; 人特别多的情况下,举例公司有100个人,其中10人一组 就是10个组 ,每个组负责的任务都不同,那么可以采用 分多个组的方案。有项目组长,每一个组里都是包含不同的人员。 而我的目前情况下 公司只有那么几个人,且这几个人 都是 参与同一个项目的开发 ...
分类:
Windows开发 时间:
2020-06-06 18:04:07
收藏:
0 评论:
0 赞:
0 阅读:
42
1,添加行号功能 添加RowPostPaint事件 //DataGridView所有单元格发生绘制的后的事件 private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e) { D ...
分类:
Windows开发 时间:
2020-06-06 17:52:59
收藏:
0 评论:
0 赞:
0 阅读:
54
笔记: oneNote,typora 复制粘贴: ditto, 护眼: f.lux 快捷搜索: listary 壁纸: wallpaper engine chrome插件: github文档树 : octotree vim : vimium 快速操作tab页: crxMouse ...
分类:
Windows开发 时间:
2020-06-06 15:56:37
收藏:
0 评论:
0 赞:
0 阅读:
59
//反射 操作 public static class Reflection { #region GetDescription(获取类型描述) /// <summary> /// 获取类型描述,使用<see cref="DescriptionAttribute"/>设置描述 /// </summar ...
分类:
Windows开发 时间:
2020-06-06 15:32:15
收藏:
0 评论:
0 赞:
0 阅读:
50