码迷,mamicode.com
首页 > Windows程序
Windows 7 下 PHP 开发环境搭建(手动)
Windows 7 下 PHP 开发环境搭建1、说明做开发的都知道一句话,就是“站在巨人的肩膀上”。确实现在打开浏览器随便一搜很多一键安装PHP环境的软件,比如wamp、xampp、AppServ...。其实我之前也一直在用wamp,对于初学者确实很方便,一键安装,然后遇到不会的再去查,去改配置,等...
分类:Windows程序   时间:2014-12-21 07:05:08    阅读次数:393
C# for Beginner session 10 to 20
Session 11-12 switch statement in C#switch statementbreak statement if break statement is used inside a switch statement,he control will leave the ...
分类:Windows程序   时间:2014-12-21 07:04:04    阅读次数:195
c# 自己实现可迭代的容器
在c#中我们经常使用到foreach语句来遍历容器,如数组,List,为什么使用foreach语句能够遍历一个这些容器呢,首先的一个前提是这些容器都实现了IEnumerable接口,通过IEnumerable接口的GetEnumerator方法获得实现IEnumerator接口的对象。IEnum.....
分类:Windows程序   时间:2014-12-21 01:52:05    阅读次数:446
C#基础知识之二
C#基础知识之二 1、  静态字段、静态成员:被类的所有实例共享,对其改变,对所有实例都可见。 2、  声明为静态的有:字段、方法、属性、构造函数、运算符、事件。 3、  常量与静态量不同:常量没有自己的存储位置,在编译时被编译器替换。 4、  类属性与类字段不同:属性是一个函数成员,它不为数据存储分配内存并执行代码。 5、  属性get访问器的所有路径必须包含一条return语句,返回...
分类:Windows程序   时间:2014-12-21 00:43:41    阅读次数:291
中国寒龙出品-Windows IE浏览器OLE自动化阵远程执行代码漏洞
### This module requires Metasploit: http://metasploit.com/download# Current source: https://github.com/rapid7/metasploit-framework##require 'msf/core...
分类:Windows程序   时间:2014-12-21 00:39:09    阅读次数:360
window.returnValue使用方法
returnValue是javascript中html的window对象的属性,目的是返回窗口值,当用window.showModalDialog函数打开一个IE的模式窗口(模式窗口知道吧,就是打开后不能操作父窗口,只能等模式窗口关闭时才能操作)时,用于返回窗口的值,下面举个例子:1、parent....
分类:Windows程序   时间:2014-12-20 23:26:52    阅读次数:336
CentOS7与Win7双系统引导问题
先安装的Win7,后安装的CentOS7,结果系统引导就只有CentOS7了。记得以前CentOS6.x系列没这个问题,主要是由于CentOS7.x使用grub2的原因吧。方案一:使用Win PE、EasyBCD修复引导(可理解为:干掉CentOS引导,然后引导Win7和CentOS) Step ....
分类:Windows程序   时间:2014-12-20 23:27:05    阅读次数:587
队列与DelphiXe新语法
好久没写代码了,更久没上博客园的博客了,无聊写几行试一下新语法。 1 unit Main; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, Sy...
分类:Windows程序   时间:2014-12-20 23:21:47    阅读次数:307
模拟C#的事件添加和删除
从《C# Via CLR》中的演化的一个小demo,探索事件的添加和删除原理,简单明了: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 usin...
分类:Windows程序   时间:2014-12-20 23:21:55    阅读次数:256
UIWindow
UIWindow详细...
分类:Windows程序   时间:2014-12-20 22:12:00    阅读次数:255
C#基础系列(一)
1、vs中F5(调试)和Ctrl + F5(直接运行不调试)的区别:Ctrl+F5是直接运行生成的程序,不进行重新编绎,所以运行起来比较快F5是重新编绎后再运行,这样可以在程序代码中设置断点跟踪来调试程序f5会重新生成项目,而ctrl+f5不会重新生成。配置文件:F5调试需设置debug=true ...
分类:Windows程序   时间:2014-12-20 22:07:07    阅读次数:237
[WPF] 圆角TextBox
使用Blend编辑TextBox的Template,将其中的ListBoxChrome修改为Border。 1 2 3 4 5 6 7 41 42 43
分类:Windows程序   时间:2014-12-20 22:06:45    阅读次数:470
跨域(六)——window.name
window.name也可以进行跨域数据传输。下面是相应的代码,evil.html跨域读取foo.html的数据,其中proxy.html和evil.html同域,没有任何内容。evil.html:foo.html:
分类:Windows程序   时间:2014-12-20 20:51:34    阅读次数:177
Win2D简介
原文链接:http://microsoft.github.io/Win2D/html/Introduction.htm介绍Win2D是一个易用的Windows Runtime API,它使用GPU加速进行即时2D图形渲染。它提供给C#和C++开发人员进行编写Windows 8.1和Windows P...
分类:Windows程序   时间:2014-12-20 19:36:33    阅读次数:289
delphi从内存流加载图片
function Tform1.GetCodeImg; var url:string; response:TMemoryStream; jpg:TJPEGImage; begin url:='https://kyfw.12306.cn/otn/passcodeNew/getPassCodeNew?module=login&rand=sjrand&0.3110086616057921'; ...
分类:Windows程序   时间:2014-12-20 18:14:53    阅读次数:360
转 Difference between WCF and Web API and WCF REST and Web Service
http://www.dotnet-tricks.com/Tutorial/webapi/JI2X050413-Difference-between-WCF-and-Web-API-and-WCF-REST-and-Web-Service.htmlPosted By : Shailendra Cha...
分类:Windows程序   时间:2014-12-20 18:07:05    阅读次数:208
GetClientRect()和GetWindowRect()
GetClientRect、GetWindowRect、ClientToScreen
分类:Windows程序   时间:2014-12-20 16:52:11    阅读次数:210
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!