Hello, I would ask if it's feasible to use the drawing module to display a DrawPane with over 2000 DrawItems, or if I will have memory or others problems.
On those DrawItems I need to implement hovers, and mouseOver/mouseOut to change fill/line color on hover, and also on click, to simulate over/selected states, and contextMenus to implement functionalities for the DrawItems.
Moreover, for the same sake of memory, I need to create 25 or 30 of those DrawPanes, though I don't need to display them simultaneously. Is it feasible to create them all, or I need to destroy one to create another?
Do I need to create a pool of DrawItems?
Thanks in advance
On those DrawItems I need to implement hovers, and mouseOver/mouseOut to change fill/line color on hover, and also on click, to simulate over/selected states, and contextMenus to implement functionalities for the DrawItems.
Moreover, for the same sake of memory, I need to create 25 or 30 of those DrawPanes, though I don't need to display them simultaneously. Is it feasible to create them all, or I need to destroy one to create another?
Do I need to create a pool of DrawItems?
Thanks in advance
Comment