Advanced Forum Search Results
-
Hello all, I've got a custom popup i've created. It has two areas - a draggable bar with a header at the top, and a grid called uxContent that developers can put their own controls. At the moment we can only put controls in the window in code. I want to be able to create a new window in design time, based on my existing window. Something ...
-
shameless bump :)
-
Hi All,
With the windows azure CTP being released today, can someone from Microsoft confirm if silverlight supports being hosted on the cloud via Windows Azure?
I'm very keen on trying this out once i get a hosting token for the CTP :)
Regards
-
Hi,
I have two silverlight applications in two seperate .aspx pages. I'm using javascript to communicate between the two aspx pages. I need to get a managed object from one silverlight application to the other.
I'm serializing the object into an array of bytes and sending the byte array through javascript. Like so:
(silverlight ...
-
I would suggest loading the path to all of your music files into a collection when your application loads. Consider this your "playlist" :)
You then need to change the Source property on the MediaElement called SoundFile and call Play() again
-
Our problem is a bit different.
We're loading some XAML into a UIElement. This XAML has storyboards in it we want to start and stop in code.
The problem is that while we can go
(Resources["storyAnimation"] as Storyboard).Start();
We still need to know the name of the storyboard. The XAML may have a number of storyboards which ...
-
[quote user="Yi-Lun Luo - MSFT"]
Unfortunately, you can't find all keys in a Silverlight ResourceDictionary. This feature is not implemented yet.
[/quote]
Thanks for the post.
I tried this today in RC0 and had the same result. There is still no way to iterate through ResourceDictionary.Values.
Is this going to be included in ...
-
Hi,
I'm having an issue where i am not able to change any properties of a custom control inside a grid. This grid is just to layout some other controls. Here is the XAML (edited for clarity)
The offending control is <Utils:Loader>
1 <UserControl>
2 <Canvas x:Name="uxContent" ...
-
Try creating two rectangles, one inside the other with a few pixels of padding.
Setup your resize event handlers on the outer rectangle and your drag handlers on the inner one.
-
Hello All,
I've created a custom dock control in RC0 for a work project. The Heirarchy looks like this:
Dock - Ribbons - RibbonItems - Menus
My XAML looks like this:
1 <Dock:Dock.Ribbons>
2 <Dock:DockRibbon Label="Layers" Icon="images/layers_grey.png" ...