JFXStudio: sketch, hack, share

Posts Tagged ‘gui

MyTabbedPane

Posted by: toumaille on: March 16, 2009

This is the first example I have written. It allows you to create your custom TabbedPane.

A TaskPane

Posted by: tareitasfx on: March 12, 2009

A Simple to use TaskPane made with javafx.
Try it with webstart or applet. You can drag the taskpane.

Instruccions:
To use it in your own application just create an instance of TaskPane
var tp: TaskPane = TaskPane {
title: “My Tasks”
pane_width: 190
translateX: 50
translateY: 50
}
Then add nodes to it with the addTask method:
tp.addTask(
SwingLabel {
text: “A Label”
}
);
Thats it!!
Sourcecode:  TaskPane.fx

Tags: ,

Challenge: Small is the New Big

This month's challenge: code something cool in only 30 lines, using the theme of Holiday. Ends December 15th.

Tags