摘要: 控件的Text属性中使用&符号,可以创建快捷方式(即热键),前面带&符号的字母会加上下划线。快捷键操作: ALT+字母 版权声明:本文为博主原创文章,未经博主允许不得转载。 阅读全文
posted @ 2015-11-09 22:44 weiwei_c 阅读(183) 评论(0) 推荐(0) 编辑
摘要: &:将字符串连接起来Substring:在字符串任何位置提取一串字符Format:格式化字符串,如:S=String.Format("{0:n3}",n)Replace:寻找第一个参数指定的字符串,一旦发现,就用第2个参数字符串替换。Compare:比较字符串,如:String.Compare(na... 阅读全文
posted @ 2015-11-09 22:36 weiwei_c 阅读(310) 评论(0) 推荐(0) 编辑
摘要: #include#include #include using namespace std;int add(int i,int j){ return i+j; }int sub(int i,int j){ return i-j; }typedef int (*FnPtr)(int,int);int ... 阅读全文
posted @ 2015-11-09 22:30 weiwei_c 阅读(3698) 评论(0) 推荐(0) 编辑
摘要: 以程序:ReferenceClass.exe为例,引用myClass.dll;1.程序编译成功后会生成ReferenceClass.exe.config文件;2.打开ReferenceClass.exe.config文件,configuration元素下增加节点 ... 阅读全文
posted @ 2015-11-09 01:41 weiwei_c 阅读(405) 评论(0) 推荐(0) 编辑