语言

Menu
Sites
Language
how to create translucent window ?

How to create translucent window ?

for progresspopup we can specify it as transparent in construct method.

Construct (bool cancelButton, bool transparent)

is there any api or alternative to create transparent window for frames ?

响应

3 回复
Alex Dem

Hi,
For frame try to use method:
SetBackgroundColor(Tizen::Graphics::Color (byte r, byte g, byte b, byte a=0xFF));
and configure last param alpha (for color) as you need.
For Form (placed on Frame) and for controls which placed on Form you could set transparency this way (or could use another appropriate methods).
Alexey.

pramod jella

Hi Alex,

I want to develop application of recording user events, how to get coordinates of window where user touched ?

i thought of with transparent window to do , mostly it not possible with the transparent, please suggest if there is any solution.

Thank you,

pramod

Alex Dem

Hi,
Usually for Tizen Controls you could use Tizen::Ui::ITouchEventListener to get coordinates.
Alexey.