2015年11月10日晚在Visual Studio设置一个Control控件的Location属性,定义中是有get;set;的,但是报错,说Location属性是不可变的? 觉得解释理解不了,上网查,有的说用Point对象赋值,有的说用SetBounds(设置边界)设置,想起来昨天下了.NET ...
分类:
Web程序 时间:
2015-11-10 21:08:05
阅读次数:
181
1.绘制虚线 CAShapeLayer *shapeLayer = [CAShapeLayer layer]; [shapeLayer setBounds:self.view.bounds]; [shapeLayer setPosition:self.view.center]; [shapeLaye...
分类:
其他好文 时间:
2015-10-27 15:00:35
阅读次数:
169
setSize()/setBounds() 和setPreferredSize() 的区别:The short answer is: it's complicated.The slightly longer answer is: use setSize() if your component's p...
Drawable drawable = mContext.getResources().getDrawable(R.drawable.duringtime);drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimu...
分类:
其他好文 时间:
2015-10-09 12:17:26
阅读次数:
105
先看它们的函数内容:procedure TControl.SetBounds(ALeft, ATop, AWidth, AHeight: Integer);begin // 虚函数,TWinControl有覆盖函数 if CheckNewSize(AWidth, AHeight) and //...
刚才看这段代码的时候:procedure TControl.SetBounds(ALeft, ATop, AWidth, AHeight: Integer);begin if CheckNewSize(AWidth, AHeight) and ((ALeft FLeft) or (ATop...
分类:
编程语言 时间:
2015-08-28 19:25:58
阅读次数:
173
// 9个显示函数 procedure SetBounds(ALeft, ATop, AWidth, AHeight: Integer); virtual; // 虚函数,important 根据父控件 // 手法:固定不变的模式,或者简单调用,或者简单设置标志位,就不是虚函数。 ...
分类:
其他好文 时间:
2015-08-25 20:59:41
阅读次数:
137
1.方法void setSize(width,height):设置按钮大小void setBounds(x,y,width,heigth):设置按钮的左上角顶点位置和大小void setContentAreaFilled(boolean):设置按钮的透明性void setBorderPainted(...
分类:
其他好文 时间:
2015-08-16 10:33:42
阅读次数:
164
Drawable drawable = mContext.getResources().getDrawable(R.drawable.duringtime);drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimu...
分类:
其他好文 时间:
2015-08-16 09:21:38
阅读次数:
99
- (void)drawLine{ CAShapeLayer *shapeLayer = [CAShapeLayer layer]; [shapeLayer setBounds:self.bounds]; [shapeLayer setPosition:self.cente...
分类:
其他好文 时间:
2015-08-13 17:15:47
阅读次数:
173