Advanced Forum Search Results
-
As I know by Javascript I can get xaml downloader to send Get/Post request. Is there any similar way in C# silverlight application? Now I want to build an xap package and embed it in the web page. Then I plan to send GET request in it.
Any suggestion is highly appreciated.
-
Great.
Done.
Thank you very much.
-
Hi,
My objective is that I need to create the animation dynamically. I mean that I need to create one animation for this element. Then I need to destroy the animation. At last one new animation may be created by the customer.
I developed a tool to help customer build animations in the web page. I say, one ellipse E and two canvases ...
-
[quote user="IanBlackburn"]
[quote user="william_1022"]Hi, I'm using Silverlight 1. Thanks for your sample code in advance.[/quote]
With this xaml<Canvas>
<Rectangle x:Name="Rectangle1" Width="50" Height="50" Fill="Red"></Rectangle>
<Rectangle ...
-
Hi, I'm using Silverlight 1. Thanks for your sample code in advance.
By the way, could you explain the solution in Silverlight 2 and HtmlBridge?
-
[quote user="william_1022"]
[quote user="IanBlackburn"]
With this Xaml: <Grid x:Name="LayoutRoot" Background="White">
<StackPanel >
<Button Content="Button1"></Button>
<Button Content="Button2" ...
-
[quote user="IanBlackburn"]
With this Xaml: <Grid x:Name="LayoutRoot" Background="White">
<StackPanel >
<Button Content="Button1"></Button>
<Button Content="Button2" Click="Button_Click"></Button>
...
-
Now, maybe I just know one element's x:Name, but I don't know its parent node.
Is it possible to delete/remove this element? Or must I try to get its parent first?
-
Are these Javascript codes?
-
In a canvas, there is one Ellipse and one Rectangle.
They have one same event listener Do() to the event MouseLeftButtonDown.
function Do(sender, eventArgs) ...
In Javascript, how can I know this sender parameter indicates the Ellipse or Rectangle? I want to know the element's type.
Note that, "Name" attribute should not be ...