IDR_FRAME 中有这样一个字符串,它由7部分构成,相邻子串之间以‘\n’分隔
窗口标题\n
文档名字\n
SB\n
Code Files(*.cpp)\n
.cpp\n
mfcArchive.Document\n
mfcArchive.Document
下面一个一个解释。
1 窗口的标题
2 表示文档名称
3 文档模板的名称,如果一个APP中有多个可供选择的文档...
分类:
其他好文 时间:
2014-08-21 04:12:03
阅读次数:
182
1 this.dynamicPanel = new Ext.Panel({2 region: 'center',3 frame: false,4 border: false,5 layout:'fit',...
分类:
Web程序 时间:
2014-08-20 16:02:43
阅读次数:
172
实现的原理:利用了自动布局和形变核心代码块:@implementation JHMainView{ UILabel *label1,*label2,*label3,*label4; UIButton *btn;}- (id)initWithFrame:(CGRect)frame{ self =...
分类:
移动开发 时间:
2014-08-20 13:53:02
阅读次数:
237
在xcode5.1上写的代码,ios7运行良好,在IOS6模拟器,发现cell全白,折腾半天,发现原来有些区别,供后来遇到这个问题的查看
// cell.backgroundColor = aColor; ios7
//ios6
cell.backgroundView = [[UIView alloc] initWithFrame:cell.frame];
...
分类:
移动开发 时间:
2014-08-20 12:35:32
阅读次数:
276
可采用的库为AWT,即abstract windowtoolkit
当前第二代GUI开发库为Swing,具有更加完善的控件支持。
Component与Container是AWT中最重要的两个类,其中Component是所有控件类的父类,而Container是Window、Frame、Panel等容器类的父类。
布局坐标系,水平方向为x轴,竖直方向为y轴。
布局管理器...
分类:
编程语言 时间:
2014-08-19 22:30:05
阅读次数:
283
原文:IS2009制作Oracle 静默安装包(一)感谢空白先生特许授权上一篇: MyEclipse中消除frame引起的“the file XXX can not be found.Please check the location and try again.”的错误 本文经原作者特许授权于海洋...
分类:
数据库 时间:
2014-08-19 18:55:15
阅读次数:
357
NineOldAndroid1.之前我们用到的第动画是frame和tween动画也就是帧动画,补间动画现在多了一种动画,它包含完了前面动画的所有状态。属性动画(Property Anmation):这个是在Android 3.0中才引进的,它更改的是对象的实际属性,在View Animation(T...
分类:
移动开发 时间:
2014-08-19 18:18:55
阅读次数:
287
UIButton *signBtn = [UIButton buttonWithType:UIButtonTypeCustom];
signBtn.frame = CGRectMake(0, 0, 80, 40);
[signBtn.layer setMasksToBounds:YES];
[signBtn.layer setCornerRadius:10.0]; //设置矩形四个圆角半径
...
分类:
其他好文 时间:
2014-08-19 16:31:58
阅读次数:
213
1、UIScrollView下图片的捏合放大和缩小,我们直接用scrollView自带的属性就可以了,这个没什么好说,我们直接贴代码:[plain] view plaincopy//控制器 theScroll=[[UIScrollView alloc] initWithFrame:frame];.....
分类:
其他好文 时间:
2014-08-19 14:19:54
阅读次数:
170
iframe方式嵌入页面的操作实验实验hi, this is a.html, frame below show b.htmlhi, this is b.html. this page call by localhost domain.
分类:
其他好文 时间:
2014-08-19 00:55:43
阅读次数:
294