Hi,
I want my silverlight background to be transparent.
In my aspx page i am setting the background to be picture by using css property.
.body1{
background-image: url(../images/background/bg2.jpg);
margin:0;
padding: 0px;
height:100%;
border:none;
overflow: hidden;
}
I want my silverlight to have the same background as my page or to be transparent
but, I must to set the isWindowless: to 'false', because either way i have display problems (on media center windows).
I tried to set the bakground by setting background:document.body.style.backgroundColor
and tried to set it transparent(and alpha colors) and it did not helped either.
Is there any way to set the silverlight background to be transparent and leave the isWindowless to be 'false'or maybe to set the background of silverlight to be picture too?
Thanks