如果是在代码中添加的形状,获取Shape.RenderedGeometry会出错。
这是由于WPF没有更新形状的原因,调用Shape.Arrange()后问题解决。
分类:
其他好文 时间:
2014-05-26 22:27:54
阅读次数:
399
@implementation@synthesis age; // 就等于@synthesis age
= age 得到同名的instance variable age 和-setAge, -age
这两个accessor.@end如果@implementation// no @synthesi.....
分类:
其他好文 时间:
2014-05-26 22:22:32
阅读次数:
237
#define CC_UNUSED_PARAM(unusedparam)
(void)unusedparam这个宏完全没有执行任何命令,这样写的原因主要是历史遗留原因,ojb-c不存在纯虚函数并且传入参数不使用编译器会发出警告,这样用一个宏既可以防止警告也有一定的解释作用。
分类:
其他好文 时间:
2014-05-26 16:18:20
阅读次数:
775
this.textBox1.Select(this.txtMsgInfo.TextLength,
0); this.textBox1.ScrollToCaret();
分类:
其他好文 时间:
2014-05-26 14:54:46
阅读次数:
178
后期会开始对于seasar 2的学习,会不定期更新。
分类:
其他好文 时间:
2014-05-26 14:25:03
阅读次数:
222
package Pro0519;import java.util.Arrays;public
class pro0519 { public static void main(String[] args) { String[] ar_str1,
ar_str2; ...
分类:
其他好文 时间:
2014-05-24 02:22:06
阅读次数:
202
这里推荐一本书,Makefile手册,本人正在学习,多交流~一、统一编译所有子目录的文件直接上Makefile内容了,AR=arLD=ldCC=gccCFLAGS
= -O2 -Wall -I./Test \ -I./Test/Test1 \#注:"\"后面不能有空格,并且该句写完后最好有个换行#注...
分类:
其他好文 时间:
2014-05-23 07:16:57
阅读次数:
396
某模块作为前台进程独立运行时,运行命令携带命令行参数;作为某平台下守护进程子进程运行时,需要将命令行参数固化在代码里。类似如下写法:char *argv[] =
{"./DslDriver", "-t", "/bin/VdslModemSco.bin"};int argc = sizeof(ar.....
分类:
系统相关 时间:
2014-05-23 06:44:22
阅读次数:
401
/* 问题:二分查找法查找元素在数组中出现的脚标。 分析:1.二分查找法的前提:数组必须是有序的。
2.找到了就返回脚标,找不到就返回-1。*/public class briSearch{ public static void main(String []
args){ int [] ar...
分类:
其他好文 时间:
2014-05-23 03:59:06
阅读次数:
217
一次AC
二维树状数组,有模版很好办
注意二维树状数组这个下标是[1][1]的
#include
#include
#include
#include
#include
#include
using namespace std;
const int Max = 1030;
int row, col, ar[Max][Max];
// 二维的其实下标为[1][1],这个要记得。
...
分类:
其他好文 时间:
2014-05-21 16:23:34
阅读次数:
271