Advanced Forum Search Results
-
Could someone list the datatype that could be used when implementing scriptable function in managed code ?
And will it be possible to accept or return a javascript object ?
Thanks!
-
Sorry, I wasn't really clear in may original question.
I was actually looking for a way to add hyperlink on XAML element like rect or canvas. Not in the HTML.
Thanks!
-
Any way to put anchor in silverlight ?
e.g. I want to put a link on a cirlce that points to a pdf file.
If we are to do it programmatically, how to force the pdf to be open in the same browser or new window ?
Thanks!
Tony
-
Is there a way to create asset library for Blend to be used in Silverlight project ?
I have seen some article about asset library for full WPF project, but not sure about silverlight.
Thanks!
Tony
-
Excellent!
Thanks!
-
I am using XAMLReader.Load to load and elements from external xaml file to the current page.
But I found that if I set createNamescope to true, I cannot use findName to find the newly added elements. Kind of make sense as I assume a new namescope has been created for the new elements.
Question is how do I access the new elements by name ...
-
I am trying to reuse an animation for multiple elements.
<Canvas.Resources>
<Storyboard x:Name="Timeline1">
<DoubleAnimationUsingKeyFrames x:Name="frames" BeginTime="00:00:00" Storyboard.TargetName="Rect1" ...
-
Nice example.
However, it does not address the original problem.
I created the StoryBoard with Blend and I could trigger it with code. But whenever I try to change the Storyboard.TargetNameProperty of the DoubleAnimationUsingKeyFrames using SetValue, I get the " Catastrophic failure" the second time I call SetValue.
-
Since 1.1 include .Net, just wonder if it's worth to use Silverlight for non-UI purpose.
For example, re-implement some intensive javascript code in C# and expose the functions. And the web page will contain a zero size (or hidden) silverlight control.
Worth doing so ?
Tony
-
Hi,
I am trying to use managed Javascript in DLR in Silverlight 1.1 and got a few questions.
1. The chess application demo the speed of compiled .Net code. What about the performance on DLR ? E.g. How does it compare between Javascript on DLR against unmanaged Javascript ?
2. The following link talked about access compiled managed code ...