Advanced Forum Search Results
-
Thanks so much for posting this! I had refactored the namespace of my startup project and had the same thing happen.
In VS2010 under start up project properties the old namespace was listed until I changed the selection to (not set), then the new namespace appeared as an option.
-
The HyperlinkButton next to text works fine. What specific problem are you having?
<StackPanel>
<TextBlock Text="To learn more about Silverlight visit "/>
<HyperlinkButton Content="http://www.silverlight.net" ...
-
Its also useful to remember that its adding and removing objects to the observableCollection that raises the Notify event. If you modify the ObservableCollection in other ways (assigning one ObservableCollection to another) you'll want to raise the CollectionChanged event.
-
A big advantage of getting rid of the code behind the XAML is to make all that data and event code easily unit testable.
As for the dynamically added UI objects, maybe the objects data could live as value objects stored in an ObservableCollection. Then expose the ObservableCollection through your view model.
-
Have you tried placing a crossdomain.xml file at the root of the WCF service's directory?
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
...
-
You can use the opensource vector editor Inkscape to open the SVG and then export as Microsoft XAML.