下例演示了 ButtonLabelPlacement 类的可能值:
package {
import fl.controls.Button;
import fl.controls.ButtonLabelPlacement;
import flash.display.Sprite;
public class ButtonLabelPlacementExample extends Sprite {
private var topButton:Button;
private var bottomButton:Button;
private var leftButton:Button;
private var rightButton:Button;
public function ButtonLabelPlacementExample() {
// ButtonLabelPlacement.TOP
var topButton:Button = new Button();
topButton.setStyle("icon", Icon);
topButton.labelPlacement = ButtonLabelPlacement.TOP;
topButton.label = ButtonLabelPlacement.TOP;
topButton.move(10, 10);
topButton.setSize(120, 120);
addChild(topButton);
// ButtonLabelPlacement.BOTTOM
var bottomButton:Button = new Button();
bottomButton.setStyle("icon", Icon);
bottomButton.labelPlacement = ButtonLabelPlacement.BOTTOM;
bottomButton.label = ButtonLabelPlacement.BOTTOM;
bottomButton.move(140, 10);
bottomButton.setSize(120, 120);
addChild(bottomButton);
// ButtonLabelPlacement.LEFT
var leftButton:Button = new Button();
leftButton.setStyle("icon", Icon);
leftButton.labelPlacement = ButtonLabelPlacement.LEFT;
leftButton.label = ButtonLabelPlacement.LEFT;
leftButton.move(270, 10);
leftButton.setSize(120, 120);
addChild(leftButton);
// ButtonLabelPlacement.RIGHT
var rightButton:Button = new Button();
rightButton.setStyle("icon", Icon);
rightButton.labelPlacement = ButtonLabelPlacement.RIGHT;
rightButton.label = ButtonLabelPlacement.RIGHT;
rightButton.move(400, 10);
rightButton.setSize(120, 120);
addChild(rightButton);
}
}
}
import flash.display.Sprite;
class Icon extends Sprite {
public function Icon() {
this.graphics.beginFill(0xFF0000);
this.graphics.drawRect(0, 0, 20, 20);
this.graphics.endFill();
}
}