Advanced Forum Search Results
-
Hi there!
I just uploaded an update to an app I'm hosting on silverlight.live.com. When I look at the preview, I see my app, nice and running as it should be. Manifest is ok as well, of course.
However, when I try one of the "embed"-links, for example: the simple IFRAME-one, it still shows me the old version of my app ...
-
I think that had something to do with getting the wrong version the first time. I had the same problem: downloaded it from the msdn-site, where it said "July preview", tried to install, didn't work because it asked for SL 3 beta SDK (and I installed the RTW already). However, when I downloaded it again, installation worked just ...
-
Overview of all Silverlight 3 related downloads: http://kevindockx.blogspot.com/2009/07/silverlight-3-released.html
I'll update as needed :-)
-
Overview of all Silverlight 3 related downloads: http://kevindockx.blogspot.com/2009/07/silverlight-3-released.html
I'll update as needed :-)
-
Hello, as SharpGIS said, memory leaks are very often caused by event handlers not being released. I've been working on a Silverlight framework for a few months, including lots of custom controls, and as far as memory leaks are concerned, it almost always boils down to 1 of 2 things: either event handlers aren't released, OR you've ...
-
Hello,
dynamically added controls should appear in the visualtree as well, as long as you try to get them after they are loaded. Can you try and execute the code above after the loaded-event of the container stackpanel has been executed?
-
You could just apply the font on each control of type "ContentControl", its children will automatically get the font you set on the containing content control.
You can use the VisualTreeHelper to run through all objects in a the tree. This recursive method will give you a list of all elements in your ...
-
Hi there,
I just put up a post on how to make a combobox (or listbox) editable using the datatemplate, some databinding & a converter. You'll see it's pretty easy to do, and I've included some sourcecode as well: http://kevindockx.blogspot.com/2009/05/designing-editable-silverlight-combobox.html
As far as the second ...
-
Another possible way of achieving this would be to set the fontfamily & foreground colour of the user control containing your textblocks - this should also change the foreground colour & font of the textblocks in the user control (assuming they haven't been specifically set, if I'm not mistaken).
You could also write an extension ...
-
If you move a container control with an animation, all the children of that container will be moved as well - so, to answer your question: yes, the children of the stackpanel should be moved when running the animation on the stackpanel.