Advanced Forum Search Results
-
Hi there,
Version: This is regarding Silverlight 2.0.
Problem: When the mouse leaves a Silverlight Component in FireFox, the MouseLeave Event does not get fired. In IE, the same thing works perfectly well.
Details: I have embedded a Silverlight component in my HTML Page. The component takes up 100% of the screen. Here is the HTML ...
-
It works. I appreciate your help.
-
Hi there:
this is for Silverlight 2.0:
Here is what I want to do: I want to use a Silverlight Component as the 'Background' of my webpage. My HTML Content shall be visible on top of my Silverlight Control.
Here is what I tried: I have set the z-Index of my Silverlight Control to -1 in order to put it behind the HTML Code. It does ...
-
Hello Niraj,
thanks for your comparison of Flash and Silverlight. I am at a decision point whether to use Silverlight or Flash. I am very familiar with Silverlight, but not at all with Flash. Would you be able to help me to understand whether Flash supports the following features:
(1) My application must dynamically load additional ...
-
Ibrahim,
one additional comment to my previous response: I suggest to convert the method-level valiable 'storyboard' into a class-level valiable. Once your method execution is completed, all method-level variables will be recycled. I assume that this is true for the storyboard as well.
BlueAquarius
-
Ibrahim,
I hope this helps:private void DrawLine(double x1, double x2, double y1, double y2)
{Line horline1 = new Line();
//horline1.Width = 150;
//horline1.Height = 1;
horline1.X1 = x1;
horline1.X2 = x2;
horline1.Y1 = y1;
horline1.Y2 = y2;SolidColorBrush stroke = new SolidColorBrush();stroke.Color = Colors.White;
horline1.Stroke = ...
-
Hi there,
does anyone have a working example of a slider which controls the position of a MediaElement? Can you please share the code?
My solution (see http://silverlight.net/forums/p/10699/49708.aspx#49708) for Silverlight 2 eta 1 does not work anymore for Silverlight 2.0 Beta 2.
Thanks
-
Hi there, Sladapter,
thanks for your help. This works fine.
Andreas
-
Patrick,
you were right. My earlier comment was incorrect. It now works. Thanks for your help.
Andreas
-
Patrick,
your solution is great, but it does not work for me. Your solution relies on acces to the Host object. In my case, the Host object is NOT accessible. The reason for this is that in my case, the class which wants to make the webservice call dynamically loaded at run time. I do not see how I can access the Host object.
But thanks for your ...