您的位置:首页 > 数据库

sql server 存储过程加密破解2

2012-05-07 17:32 381 查看
代码:
public class MyGroupUI extends GroupUI
{
public function MyGroupUI(network:Network, group:Group){
super(network, group);
}

override protected function drawContent(graphics:Graphics):void{
if(!group.expanded){
super.drawContent(graphics);
return;
}
var rect:Rectangle = this.bodyRect;
rect.inflate(rect.width * 0.2, rect.height * 0.2);
Utils.drawImage(graphics, 'subnetwork_image', rect.x, rect.y, rect.width, rect.height, null, Consts.STRETCH_FILL);
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: