码迷,mamicode.com
首页 >  
搜索关键字:setbounds    ( 68个结果
记一次查.NET 源代码
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
Swing基础之设置大小
setSize()/setBounds() 和setPreferredSize() 的区别:The short answer is: it's complicated.The slightly longer answer is: use setSize() if your component's p...
分类:Windows程序   时间:2015-10-16 17:06:09    阅读次数:256
TextView-setCompondDrawables用法
Drawable drawable = mContext.getResources().getDrawable(R.drawable.duringtime);drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimu...
分类:其他好文   时间:2015-10-09 12:17:26    阅读次数:105
TWinControl.SetBounds与TWinControl.UpdateBounds赏析(定义和调用)
先看它们的函数内容:procedure TControl.SetBounds(ALeft, ATop, AWidth, AHeight: Integer);begin // 虚函数,TWinControl有覆盖函数 if CheckNewSize(AWidth, AHeight) and //...
分类:Windows程序   时间:2015-08-30 06:32:21    阅读次数:284
强化一下概念:程序自己不去取消息,消息不会自己跑过来运行(针对线程消息队列里的消息,也是绝大多数消息)
刚才看这段代码的时候: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
TControl的显示函数(5个非虚函数,4个虚函数)和三个例子的执行过程(包括SetParent的例子)
// 9个显示函数 procedure SetBounds(ALeft, ATop, AWidth, AHeight: Integer); virtual; // 虚函数,important 根据父控件 // 手法:固定不变的模式,或者简单调用,或者简单设置标志位,就不是虚函数。 ...
分类:其他好文   时间:2015-08-25 20:59:41    阅读次数:137
JButton按钮
1.方法void setSize(width,height):设置按钮大小void setBounds(x,y,width,heigth):设置按钮的左上角顶点位置和大小void setContentAreaFilled(boolean):设置按钮的透明性void setBorderPainted(...
分类:其他好文   时间:2015-08-16 10:33:42    阅读次数:164
TextView——setCompoundDrawables说明
Drawable drawable = mContext.getResources().getDrawable(R.drawable.duringtime);drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimu...
分类:其他好文   时间:2015-08-16 09:21:38    阅读次数:99
UIVIew画虚线
- (void)drawLine{ CAShapeLayer *shapeLayer = [CAShapeLayer layer]; [shapeLayer setBounds:self.bounds]; [shapeLayer setPosition:self.cente...
分类:其他好文   时间:2015-08-13 17:15:47    阅读次数:173
68条   上一页 1 2 3 4 5 6 7 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!