bgrabitmap / bgracontrols

🆗 BGRA Controls is a set of graphical UI elements that you can use with Lazarus LCL applications.
https://bgrabitmap.github.io/bgracontrols/
183 stars 30 forks source link

BGRAVirtualscreen z-order #33

Closed MaartenJB closed 5 years ago

MaartenJB commented 5 years ago

Hi,

I've got a problem with the BGRAVirtualscreen. I cant change the z-order to move it to the back. It is always on top of other components, for example the TBCButton.

Reproduce: Place a TBCButton and a BGRAVirtualscreen on the form, and try to send the virtual screen to the back so that the button is visible when you drag it over the virtual screen. (I don't want the virtual screen to be the parent of the button)

I use the github master version of bgracontrols/bgrabitmap and use Lazarus 1.8.0

Best regards,

Maarten

lainz commented 5 years ago

Hi, that is not possible. Instead of a virtualscreen use a TBCGraphicControl that can be painted as well.

El vie., 30 de nov. de 2018 10:30 AM, MaartenJB notifications@github.com escribió:

Hi,

I've got a problem with the BGRAVirtualscreen. I cant change the z-order to move it to the back. It is always on top of other components, for example the TBCButton.

Reproduce: Place a TBCButton and a BGRAVirtualscreen on the form, and try to send the virtual screen to the back so that the button is visible when you drag it over the virtual screen. (I don't want the virtual screen to be the parent of the button)

I use the github master version of bgracontrols/bgrabitmap and use Lazarus 1.8.0

Best regards,

Maarten

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/bgrabitmap/bgracontrols/issues/33, or mute the thread https://github.com/notifications/unsubscribe-auth/AD8KQ8H4mmEWF4WuRRgyDz05Q8Lt8NDtks5u0TLcgaJpZM4Y7rEV .

MaartenJB commented 5 years ago

ok, thanks, is this just as fast as the virtual screen?

lainz commented 5 years ago

Yes is the same just that its like a paintbox, the virtualscreen is like a panel.

El vie., 30 de nov. de 2018 10:40 AM, MaartenJB notifications@github.com escribió:

ok, thanks, is this just as fast as the virtual screen?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/bgrabitmap/bgracontrols/issues/33#issuecomment-443206502, or mute the thread https://github.com/notifications/unsubscribe-auth/AD8KQyzvoF0SQDw0bHwmZIh-uZpe4SSLks5u0TVmgaJpZM4Y7rEV .

MaartenJB commented 5 years ago

ok thank you!