语言

Menu
Sites
Language
How to make web control background transparent

Hello,

I am inserting a web control in my app's native form(App is a tzn native app). Here is how i am doing that.

1. Through tizen native UI builder, added a web control to the form.

2. in my code i have done this:

__pWeb = static_cast<Web*>(GetControl(MY_WEB)); 

__pWeb->LoadUrl(L"file://"+mylocal_html_file);

With this i am able to display the web content.

But i want to make the background of the web control as transparent so that the main FORM's color/image can be visible.

Can you suggest what to do for that?