Advanced Forum Search Results
-
I have tried what you said but it is displayed with a black background
this my XAML code
<Canvas
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="100" Height="50" Canvas.Left="0" ...
-
Hi
I want to do a silverlight control to work as a logo
I'll put some images and animation
but I want the main canvas to be transparent
I want the background of the host HTML page to be shown
Is that possible
-
yes
you have to have at least one canvas at the XAML page
you can also watch this video
http://silverlight.net/learn/learnvideo.aspx?video=280
-
The example that I have sent does exactly what you want
you can use createFromXaml with a string rather than a XAML file
I did that before
try this
var templateInstance = this.plugIn.content.createFromXaml(templateInstanceString);
sender.findName("itemsContainer").children.insert(0, templateInstance); //itemsContainer is ...
-
yes it is can be done by using a downloader object
this.downloader = this.plugIn.createObject("downloader");this.downloader.addEventListener("completed", Silverlight.createDelegate(this, this.downloadCompleted));
this.downloader.open('GET', "itemTemplate.xaml");
this.downloader.send();
and in this ...
-
Try to install Visual Studio 2008