Advanced Forum Search Results
-
OK it's been a while since I've had time to play with Silverlight. But I spent a couple days at MS Reading about 6-8 weeks ago on a Silverlight workshop. The course itself didn't provide any real insights however getting out of the office allowed me to focus on a problem that had been bugging me. That being: getting ...
-
[quote user="StefanWick"]
If you are creating a single XAP for multiple cultures, you can create satelite assemblies for each culture that contain the localized string resources. Be sure to NOT list them in the AppManifest.xaml file, but instead on-demand load them as appropriate. This will ensure that only the assemblies that ...
-
[quote user="slyi"]
I could not get Guy generator to work :( but the Dmytro Kryvko Extended Strongly Typed Resource Generator at http://dmytro.kryvko.googlepages.com/ works well once the <SupportedCultures> tag is set in your csproj using the same instructions but step 17 as ...
-
Hi, just comfirmed that I have the same problem. Seems to be a big in Silverlight. I have an app that supports many cultures, however if the client machine does not have the language pack installed, and the culture is defined in the SupportedCultures tag, then the app fails to load.
This is a pretty serious flaw.
-
Sharker, you can download a copy of the app that works with the final SL release here.
-
Has anyone used the new MessageBox feature?
The MessageBoxButton enum has two options: OK & OKCancel yet the MessageBoxResult supports Yes & No also.
Does anyone from Microsoft know if more enum options will be added to MessageBoxButton ??
-
Are you planning to return a value?
Tried yield?
http://msdn.microsoft.com/en-us/magazine/cc163970.aspx
-
Is anyone having any problems with using Visual State Manager with RC0??
If I define a style in App.xaml that uses VSM, then the designer view of a user control goes blank.
I'm also having problems when applying styles to elements within my custom controls.This release is really starting to piss me off.
-
Not sure what Expression is doing here. None of my control styles in generic have a x:Key value.
Expression does add a bunch of other designer stuff, most of which is set to be ignored.
Sorry cannot help.
-
void ReadStream(string absolutePath)
{
var wc = new WebClient();
wc.OpenReadCompleted += OnWebReadCompleted;
wc.OpenReadAsync(new Uri(absolutePath, UriKind.Absolute));
}
void OnWebReadCompleted(object sender, OpenReadCompletedEventArgs e)
{
// Read your stream from e.Result
}
Remember if the path is on a different domain ...