码迷,mamicode.com
首页 > Windows程序 > 周排行
【C#学习笔记】载入图片并居中
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:Windows程序   时间:2017-08-27 16:05:31    阅读次数:167
【C#学习笔记】获取当前应用程序所在路径及环境变量
转自:http://www.cnblogs.com/netlyf/archive/2011/06/22/2086718.html 一、获取当前文件的路径 string str1=Process.GetCurrentProcess().MainModule.FileName;//可获得当前执行的exe ...
分类:Windows程序   时间:2017-08-27 16:13:31    阅读次数:260
windows10 安装 vim +spf13
安装curl命令下载:https://curl.haxx.se/download.htmlWin64x86_64CAB7.55.1binarySSLStefanKanthak将CURL.exe添加到git目录,并添加到环境变量,cmd中验证:curl--version2.安装.git并添加至环境变量,cmd中验证:git--version3.gitclone-b3.0https://github.com/spf13/spf13-..
分类:Windows程序   时间:2017-08-29 12:38:07    阅读次数:218
C# 导出Excel的示例(转)
using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Windows.Forms; using System.Reflection; namespace D... ...
分类:Windows程序   时间:2017-08-29 13:02:16    阅读次数:231
WPF程序性能
WPF程序性能由很多因素造成,以下是简单地总结: 元素: 1、 减少需要显示的元素数量:去除不需要或者冗余的XAML元素代码. 通过移出不必要的元素,合并layout panels,简化templates来减少可视化树的层次。这可以保证第内存使用,而改变渲染性能。 2、 UI虚拟化:只显示当前需要显 ...
分类:Windows程序   时间:2017-08-29 18:02:33    阅读次数:312
Win7连接共享打印机时,报 0x00000bcb 错误
打印服务器添了台DocuCentre-VIC3371(富士施乐3371打印机)问题描述:Win8.1、Win10等系统均能正常连接,部分Win7客户端连接时,报0x00000bcb错误。解决方法:后来桌面小哥找到了解决方法,Win7安装Windows6.1-KB3170455-x64补丁后,正常连接打印机(看来及时打补丁,很有必要)
分类:Windows程序   时间:2017-08-29 18:51:45    阅读次数:3651
C# 写日志的方法
public void WriteLog(string msg) { string filePath = AppDomain.CurrentDomain.BaseDirectory + "Log"; if (!Directory.Exists(filePath)) { Directory.Creat ...
分类:Windows程序   时间:2017-08-30 19:44:20    阅读次数:226
C# 桌面截屏 添加鼠标
#region 第一种方法 [DllImport("user32.dll")] static extern bool GetCursorInfo(out CURSORINFO pci); private const Int32 CURSOR_SHOWING = 0x00000001; [Struct ...
分类:Windows程序   时间:2017-08-30 20:05:17    阅读次数:277
Delphi中 StrToIntDef函数的用法
Delphi中 StrToIntDef函数的用法:比如我要判断一个文本框里输入的字符串能不能转换为integer类型,如果能,则返回转换后的整型数据,如果不能,则返回整数0,那么我就可以用strtointdef这个函数.写法如下:假设edit1.text:=‘1000‘;则strtointdef(e ...
分类:Windows程序   时间:2017-08-31 09:44:33    阅读次数:167
delphi7 Delhi 10.2 sgcWebSockets 控件安装.
最近使用到WebSocket功能. 在临时任务中用网上C#类已实现.但是以后的平台是delphi上面进行开发的.上网找到该控件.折腾两天安装成功.记录下!! 国内网站下载的3.2版本,不支持最新delphi 10.2. 3.2版本在Delphi7上边安装,需要卸载indy9,下载最新indy10,我 ...
分类:Windows程序   时间:2017-08-31 10:57:46    阅读次数:290
C#GDI绘图
C#GDI绘图 1、绘图步骤 1.1创建Graphics类 1.1.1控件类的OnPaint()方法参数PaintEventArgs获取Graphcis对象。 1.1.2窗体类或控件中的CreatGraphics()方法获取Graphics对象。 1.1.3从位图对象(Bitmap)产生一个Grap ...
分类:Windows程序   时间:2017-08-31 11:06:43    阅读次数:215
C# 逆变与协变
在C#从诞生到发展壮大的过程中,新知识点不断引入。逆变与协变并不是C#独创的,属于后续引入。在Java中同样存在逆变与协变,后续我还会写一篇Java逆变协变的文章,有兴趣的朋友可以关注一下。 ...
分类:Windows程序   时间:2017-08-31 16:03:18    阅读次数:260
Elasticsearch5.X IN Windows 10 系列文章(5)
ElasticSearch版本: 5.5.1 (最新稳定版为5.5.2),由于用到IK中文分词插件,最新版本没有5.5.2 ,所以使用5.5.1 日期:2017-08-31 第五章:Kibana 安装 Search Guard 官方文档 1、下载与kibana 版本对应的 Search Guard ...
分类:Windows程序   时间:2017-08-31 19:13:38    阅读次数:256
compile FFMPEG under windows
这个文章应该算是最好的了。但是还有一些需要修正 win10 msys2 vs2015 ffmpeg3.2.2 编译 1) 把这个加到 ffmpeg.c 的最上面 ...
分类:Windows程序   时间:2017-09-01 00:04:12    阅读次数:262
C#中的集合ArrayList
1,ArrayList集合定义数组时,不需要初始化其大小: 例: ArrayList animalArrayList = new ArrayList(); 但,使用array方法定义数组时: Animal[] animalArrayList2 = new Animal[5]; 2.ArrayList ...
分类:Windows程序   时间:2017-09-01 09:48:02    阅读次数:247
用户注册,登录API 接口
Controer: Model: ...
分类:Windows程序   时间:2017-09-01 10:51:48    阅读次数:471
windows 端口映射
添加映射: netsh interface portproxy add v4tov4 listenport=9888 connectaddress=192.168.20.5 connectport=9888 删除映射: netsh interface portproxy delete v4tov4 ...
分类:Windows程序   时间:2017-09-01 14:25:45    阅读次数:232
C# 把小写人民币转换为大写
转换人民币大小金额 ...
分类:Windows程序   时间:2017-09-01 17:43:51    阅读次数:260
必备 .NET - C# 脚本
作者:Mark Michaelis| 2016 年 1 月 Link: https://msdn.microsoft.com/zh-cn/magazine/mt614271.aspx 随着 Visual Studio 2015 Update 1(下文简称 Update 1)的发布,引出了全新的 C#... ...
分类:Windows程序   时间:2017-09-02 10:37:54    阅读次数:478
删除windows服务命令
打开命令框:输入sc delete 服务名 例如删除elasticsearch-service-x64服务 sc delete elasticsearch-service-x64 ...
分类:Windows程序   时间:2017-09-02 14:26:04    阅读次数:267
86459条   上一页 1 ... 24 25 26 27 28 29 30 ... 4323 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!