出于某种原因,当我添加一个可选列表时,当行高增加时,每个单元格中的标签都会不断被裁剪。我相信这可能会发生,因为原始行高是 20,所以列表会自动裁剪超出行高 20 的框的任何内容;所以,我的问题是:有没有办法改变这个功能?
这是它的截图:http: //s7.postimg.org/6wqxfb1qz/Screen_Shot_2013_10_10_at_8_31_49_PM.png
这是我的代码:
list = new List();
list.rowHeight = 50;
list.setRendererStyle("contentPadding", 5);
var myTextFormat:TextFormat = new TextFormat();
myTextFormat.size = 20;
myTextFormat.font = "Microsoft Sans Serif";
list.setRendererStyle("textFormat", myTextFormat);
list.width = 118;
list.height = stage.stageHeight - 60;
list.focusEnabled = false;
list.setStyle("contentPadding", 5);
addCategories();
list.move(0, 50);
addChild(list);