01-30-2012 02:38 AM
Hi,
I just wanted to know if it's possible to pop out a circle when I click on my panel_picture or a solution to workaround ?
I have a picture and when I click on it I want to draw my path.
Thanks
Solved! Go to Solution.
01-30-2012 04:17 AM
A picture control cal respond to EVENT_LEFT_CLICK event, as discussed for example in this thread.
To show some graphic element on the screeen you can for example have some hidden picture controls set with transparent background with the appropriate element and position + show on the click event; alternatively you can move your image to a canvas and draw directly on the canvas. Regarding the canvas there is a godd example that you can look for using the example finder (Help >> Search example with keyword CANVAS).
01-30-2012 07:41 AM
Ok thank you I didn't know that it was possible to load an image to a canvas !