Advanced Forum Search Results
-
[quote user="ganesh_ranganathan"]my Accordion Control doesnt have a HeaderTemplate[/quote]
I set the header template like this:
<layoutcontrols:Accordion.ItemContainerStyle>
<Style x:Name="accordionitemstyle1" TargetType="layoutcontrols:AccordionItem">
<Setter ...
-
[quote user="Ganesh_Ranganathan"] In the code behind I set the Accordion's dataContext property to my custom business object[/quote]
You've explicitly set a list of AccordionItems in XAML so trying to use DataContext will have no effect - the accordion already has its data source. Since your items specified ...
-
[quote user="K2P2"]You download the Toolkit and it puts it in the start menu.[/quote]
Wow.
At various times I've wished there was a toolkit help file and never bothered to search for one so I just winged it with intellisense.
And here it was all this time... :)
-
[quote user="Rahul Jain"]Here is the sample image uploaded of the Alert Control[/quote]
I couldn't find an Alert control anywhere, but based on your image, I dragged one from the toolbox onto a XAML file and got this
...
-
[quote user="tehprata"]on my remote machine, HttpFox does not look for clientaccesspolicy.xml at all[/quote]
Is there even a cross domain issue? I don't know if Silverlight requests the policy file if a request is on the same domain the Silverlight app is hosted on.
-
[quote user="rasmasyean"]then I have to have a basicHttpBinding endpoint?[/quote]
BasicHttpBinding is for "endpoints that can communicate with ASMX-based Web services and other services
that conform to the WS-I Basic Profile 1.1".
If the service you are connecting to meets those requirements then you could use ...
-
What are you hosting on?
Does the identity the service is running under have permissions it needs for any resources it's accessing (like databases, files, directories, etc.)?
-
I noticed the MouseWheel support added to Silverlight 3 is documented as not being supported on Mac, so I still use the old MouseWheelHelper code that came with Deep Zoom builder generated images.
http://blogs.microsoft.co.il/blogs/maxim/archive/2009/04/03/mouse-wheel-helper-for-silverlight.aspx
While I don't have a Mac here, ...
-
[quote user="Nogido"]Still not loading...[/quote]
If you debug the server side, how far does it get? Does the handler get called? If so, is newBmp valid at the time it's saved to the output stream?
On the client end - What if you add ImageOpened/ImageFailed event handlers to the Image...do either of those get ...
-
If you remove the <param name="Windowless" value="true" /> does it start on load?