Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: General Question how to create Project Management App

  1. #1
    Junior Member
    Join Date
    Feb 2019
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default General Question how to create Project Management App

    Hi Guys,

    I'm new here..

    i want to create an Application, with JavaFX which should be use for something like Project Management.

    That means, that i have an "Kanban" style board and can move "Tasks" between the "Fields". With Drag n Drop.

    The question is, with what should i create it?

    Until now i just used in JavaFX the usual elements.. like listviews tables buttons and so on.

    But i think this is something i should make with Graphics right?

    any experience?

    cheers
    Last edited by cyborg; February 8th, 2019 at 03:39 AM.

  2. #2
    Member
    Join Date
    Apr 2014
    Posts
    93
    Thanks
    3
    Thanked 7 Times in 7 Posts

    Default Re: General Question how to create Project Management App

    In JavaFX, use a Canvas to do your own 2D drawing. Unfortunately, Oracle in all their awe-inspiring wisdom decided it's not necessary to have a single JFX component that can both draw and respond to mouse events out-of-the-box. So I use a subclass of Pane with its own Canvas to get both. The layoutChildren() function just positions its Canvas at 0, 0, getWidth(), getHeight(). Listen for mouse events on the Pane, and do custom drawing on the Canvas. Then it's almost like JPanel but in JavaFX.

Similar Threads

  1. Java general question
    By maths94 in forum What's Wrong With My Code?
    Replies: 10
    Last Post: December 6th, 2013, 04:31 PM
  2. A general question about online help
    By michael.duffy31 in forum What's Wrong With My Code?
    Replies: 2
    Last Post: August 9th, 2013, 01:27 AM
  3. General question about Interfaces
    By michael.duffy31 in forum Java Native Interface
    Replies: 5
    Last Post: June 30th, 2013, 02:44 PM
  4. General Question; Need Ideas
    By clydefrog in forum Java Theory & Questions
    Replies: 2
    Last Post: March 28th, 2012, 04:42 PM
  5. General Question
    By Becca in forum Collections and Generics
    Replies: 6
    Last Post: November 3rd, 2011, 03:52 PM