Advanced Forum Search Results
-
I'm hosting a Silverlight app within a native desktop app using an embedded browser. I'd like to programmatically increase the quota for isolated storage without having to prompt the user--Ideally the user won't even realize its a Silverlight app. Is there a way to do this by modifying the quota.dat file directly or other means from my ...
-
Agreed. This is very frustrating. Certainly this must be a very common use case. If loaded doesn't really mean everything's loaded, its nearly useless.
-
Can someone from the SL team suggest a workaround for this? This is a show-stopper for us right now. Thanks. The TwoWay binding suggestion above doesn't seem to be working for me, although perhaps I'm just misunderstanding.
-
Jeff,
Are there any plans to address this? I'm having the same issue with committing the text on Enter or loss of focus. There are more reasons to do this than just to save some conversion expense. What about being able to press Escape to abort an edit like a normal TextBox allows? Its too late for that if the model is changing for every ...
-
I'm getting some odd behavior with the ComboBox when placed in the row details template of a DataGrid.
Put a combo box in the row details of a data grid
Bind the combo's ItemsSource to some data source -- this only fails with a dynamically populated combo box
Run the app and expand the row details of several data grid items
Select ...
-
Or a little shorter with LINQ: public IEnumerable<Enum> GetEnumValues(Enum enumeration)
{
return from f in enumeration.GetType().GetFields(BindingFlags.Static | BindingFlags.Public)
select (Enum)f.GetValue(enumeration);
}
-
I'm having the same issues. It would be great if the SL team could give us a check box to disable it.
-
Yup. Thanks Ken, but I've already seen that. If only MS would let me just walk out the door with it.
-
Given that the installers are designed to run standalone (and even silent) for enterprise installations, this seems like its essentially a licensing issue. To any on the silverlight team listening, please note my vote to open this up for redistribution, FWIW. I realize my application is atypical, but as it stands this is not going to be ...
-
Hi,
I'd like to use silverlight content as part of a broader application via an embedded web browser. Can the silverlight installer be redistributed to end customers (outside my organization) so it could be installed with the application? Launching a web browser or downloading it on demand are not very attractive options for this scenario.