码迷,mamicode.com
首页 > Windows程序
Windows下git配置多个sshkey
生成sshkeyssh-keygen -t rsa -C "your-email@address.com" -f filename没有指定f选项或f选项为空时,生成的私钥和公钥为:id_rsa和id_rsa.pub为了同时连接多个源需要为不同的源设置不同的名称,否则会被覆盖掉PS1:Windows命...
分类:Windows程序   时间:2015-06-29 14:42:57    阅读次数:149
Windows录音API学习笔记(转)
源:Windows录音API学习笔记Windows录音API学习笔记结构体和函数信息结构体WAVEINCAPS该结构描述了一个波形音频输入设备的能力。typedef struct { WORD wMid; 用于波形音频输入设备的设备驱动程序制造商标识符。 WORD wPid; 声音输入设备的产品识别...
分类:Windows程序   时间:2015-06-29 14:40:57    阅读次数:257
【续】强行在C# Winform中渲染Cocos2d-x 3.6
【前言】 上一篇讲了怎么把Cocos2d-x 3.6渲染进MFC窗体,这里来讲一下怎么在C# Winform中做到同样的功能。如果你不熟悉MFC的使用但对C# Winform比较在行,请往下看。 这一篇是作为上一篇的副属文,所以文中提到的部分操作需要在上一篇中找……博主懒逼不在这复制粘贴了。【核.....
分类:Windows程序   时间:2015-06-29 14:39:07    阅读次数:201
C#,动态加载DLL,通过反射,调用参数,方法,窗体
.net中常会用到动态加载DLL,而DLL中可能包含各种参数、方法、窗体,如何来调用动态加载这些参数、方法、窗体呢?在C#中,我们要使用反射,首先要搞清楚以下命名空间中几个类的关系:System.Reflection命名空间(1) AppDomain:应用程序域,可以将其理解为一组程序集的逻辑容器(...
分类:Windows程序   时间:2015-06-29 14:35:17    阅读次数:1888
wpf登陆及构造函数的传值及绑定传值
属性:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.ComponentModel;namespac...
分类:Windows程序   时间:2015-06-29 14:33:52    阅读次数:142
winform文件修改器
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:Windows程序   时间:2015-06-29 14:34:16    阅读次数:163
winform 记事本
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;//流的命名空间using System....
分类:Windows程序   时间:2015-06-29 13:19:23    阅读次数:157
C#中public、private、protected、internal、protected internal(转)
C#中public、private、protected、internal、protected internal & (2010-09-22 13:33:45)转载 标签: 杂谈 分类: C#在C#语言中,共有五种访问修饰符:public、private、protected、internal、prot...
分类:Windows程序   时间:2015-06-29 13:20:16    阅读次数:145
输入身份证号码自动读取生日与性别(delphi)
一、格式介绍:【15位号码格式】1、第l一6位数为行政区划代码;2、第7-12位数为出生日期代码;3、第13---15位数为分配顺序代码;(1)、行政区划代码,是指公民第一次申领居民身份证时的常住户口所在地的行政地区。(2)、出生日期代码,第7-8位数代表年份(年份前面二位数省略),第9-10位数代...
分类:Windows程序   时间:2015-06-29 13:18:37    阅读次数:220
delphi 快捷键大全
*************************1.功能键2.组合键3.其他快捷键4.补充5.补充1(带分类)6.补充2--Edit by 2013.1.14**************************1.功能键:F1 help帮助(help文档)F3 find (search a...
分类:Windows程序   时间:2015-06-29 13:17:05    阅读次数:237
Winform开发常用控件之ComboBox、ListBox
ComboBox就是我们常见的下拉框,对于此类控件,我们最关心的当然是数据的绑定和选择值得获取。首先介绍个属性DropDownStyle,如果不允许ComboBox输入值,只能选择,就选DropDownList,默认是DropDown。可以试一试看看效果。1、简单的数据加载和值选取与前面介绍的Che...
分类:Windows程序   时间:2015-06-29 13:13:47    阅读次数:212
WPF绑定Databale参考代码
后台代码using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System....
分类:Windows程序   时间:2015-06-29 13:11:14    阅读次数:163
winform 进制之间的转换
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:Windows程序   时间:2015-06-29 13:10:07    阅读次数:156
WPF控件互相绑定参考代码
后台代码using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System....
分类:Windows程序   时间:2015-06-29 13:07:06    阅读次数:190
[C#]浅析ref、out参数
转载:http://www.cnblogs.com/vd630/p/4601919.html#top按引用传递的参数算是C#与很多其他语言相比的一大特色,想要深入理解这一概念应该说不是一件容易的事,再把值类型和引用类型给参杂进来的话就变得更加让人头晕了。 经常看到有人把按引用传递和引用类型混为...
分类:Windows程序   时间:2015-06-29 13:02:31    阅读次数:164
C#中Abstract和Virtual
C#中Abstract和Virtual在C#的学习中,容易混淆virtual方法和abstract方法的使用,现在来讨论一下二者的区别。二者都牵涉到在派生类中与override的配合使用。一、Virtual方法(虚方法) virtual 关键字用于在基类中修饰方法。virtual的使用会有两种情况:...
分类:Windows程序   时间:2015-06-29 13:01:16    阅读次数:108
在OWIN WebAPI中基于OAuth授权【客户端模式(Client Credentials Grant)】
适应范围 采用Client Credentials方式,即应用公钥、密钥方式获取Access Token,适用于任何类型应用,但通过它所获取的Access Token只能用于访问与用户无关的Open API,并且需要开发者提前向开放平台申请,成功对接后方能使用。认证服务器不提供像用户数据这样的重要资...
分类:Windows程序   时间:2015-06-29 12:59:01    阅读次数:265
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!