Advertisement
Advertisement
| 04.07.2008 at 11:37AM PDT, ID: 23302294 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: |
package{
import fl.controls.dataGridClasses.DataGridColumn;
import fl.data.DataProvider;
import fl.controls.*;
import fl.controls.ScrollPolicy;
import flash.display.Sprite;
import flash.display.*;
public class UserListView extends AbstractUserListView {
public var _dataGrid:DataGrid;
public function UserListView(data:UserListData) {
// Call the super constructor, passing it the
// data parameter.
super(data);
_dataGrid=new DataGrid();
_dataGrid.x=2;
_dataGrid.y=24;
_dataGrid.width=270;
_dataGrid.height=191;
addChild(_dataGrid);
// Call draw() when the object is constructed.
draw(null);
}
// Override the draw() method.
override protected function draw(event:Event):void {
}
}
}
|