Friday, June 3, 2011

xshelfview in JFXtras-0.7rc2 and title changing

xshelfview has a bug - the title doesn't change while scrolling images. The workaround is to use your own label to display title:

var shelf : XShelfView = XShelfView {
   showText: false,
   ...
}
var title : Label = Label {
   text: bind shelf.imageNames[shelf.index] as String
   font: Font.font("SansSerif", FontWeight.BOLD, 14);
   effect: DropShadow {color: Color.WHITE, radius: 5, blurType: BlurType.ONE_PASS_BOX}
}

this label has the same style as original label. The only thing left is to place label into right place.

No comments :

Post a Comment