Guest User

Untitled

a guest
May 19th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. /* Creating an org.jfxtras.scene.layout.Grid */
  2.  
  3. public class MyGrid extends CustomNode {
  4. override function create(): Node {
  5. Grid {
  6. rows: [
  7. Row{
  8. cells: [Text {content: "Username:"}, TextBox {}]
  9. },
  10. Row{
  11. cells: [Text {content: "Password:"}, TextBox {}]
  12. }
  13. ]
  14. }
  15. }
  16. }
Add Comment
Please, Sign In to add comment