Question: Drag and drop tut.
Heya!
Im new on the forum and on java programming.
Hope this is the right place to ask my question.
Anyone know where to find information or any tutorials about drag and drop functions?
More specific the kind of drag and drop function there is in Netbeans and Visual Studio where the user can drag a button or a textfield into a a panel.
the button and textfield etc is on the same GUI as the panel where the user can put the stuff.
Thanks // Pierre
Re: Question: Drag and drop tut.
Check out the Java Tutorial on drag and drop. You'll need to implement custom transfer and data flavour classes because the provided ones deal with data content rather than whole components, but the framework is quite usable.
Re: Question: Drag and drop tut.
Quote:
Originally Posted by
dlorde
Check out the
Java Tutorial on drag and drop. You'll need to implement custom transfer and data flavour classes because the provided ones deal with data content rather than whole components, but the framework is quite usable.
That is exactly the stuff i have been looking for! thanks alot m8 <3