Advanced Forum Search Results
-
Silverlight 2 cannot access web services cross domain in SSL
When trying to access a web service, either WCF (.svc) or asmx in Silverlight works well until we add SSL, when trying to access and using fiddler, complains about the clientaccesspolicy.xml by a crossdomain error:
The authentication cookie is attached to the request, yet ...
-
So the events happen after you bind it, yet then is too late for me to know if I want to bind a broken image, I believe this is bad design.
I had to write code to download it twice now, one to check if the image exisit using WebClient so I know if I want to bind it!
Thanks man, at least ansewerd my question.
-
Guys,
I believe there is a problem in the Image, using the code below none of the events will fire:
BitmapImage bi = new BitmapImage(new Uri("invalidurlpp", UriKind.Absolute));
Image image = new Image();image.ImageFailed += (object senderFailed, ExceptionRoutedEventArgs eFailed) =>
{MessageBox.Show("Image ...
-
Sounds like a great information, is not a error, next time your restart the computer all the temp files will be deleted, what do you see strange? The only weird part is why they give it a number like an error?
-
I found the solution, I notify the TreeView looks like fixes the issue.Implement the INotifyPropertyChanged interface to notify the TreeView that something has changed.public class CheckBoxEx : INotifyPropertyChanged
{
public CheckBoxEx()
{
ListChildren = new List<CheckBoxEx>();
}
...
-
I found the solution, I notify the TreeView looks like fixes the issue.Implement the INotifyPropertyChanged interface to notify the TreeView that something has changed.public class CheckBoxEx : INotifyPropertyChanged
{
public CheckBoxEx()
{
ListChildren = new List<CheckBoxEx>();
}
...
-
This are the steps to reproduce the problem, as you can see in the template the bindings are TwoWay still mmanually I cannot change the check box after the controls are bound.
The template is pretty simple, 2 levels with the same information, an image, a checkbox and a label. <UserControl.Resources>
...
-
Hey Justin,
Never thanked you for all your help back at the MVP summit, the Isolated storage tip took me a long way.
Looks like the best way to do this is to put a sample together, let me write it and post it shortly.
Cheers
Al
-
The title kind of says it all; I am trying to check programmatically a Checkbox inside a TreeView navigating inside the Tree without any success:for (int p = 0; p < treeView.Items.Count; p++) ...
-
Hi,
I have some questions relating to MultiScaleTileSource.
MultiScaleTileSource is a class that supplies MultiScaleImage with
image urls. I have created a subclassed MultiScaleTileSource but
need some help figure out the tile requests.
I have an image pyramid that with 16 tile levels. Each tile image is
512 x 512.
Smallest Scale Tile ...