Advanced Forum Search Results
-
Those bits are way old by now - the final version of Silverlight 2 has been released.
You can get everything you need from this post:
http://weblogs.asp.net/scottgu/archive/2008/10/14/silverlight-2-released.aspx
HTH
/Billy
-
Hi,
I'm trying to specify a template for a header of a column using the DataGrid, but nomatter how I tweak my XAML, I just can't get it to work on RC0.
Thanks for any help!
-
I can't find it in any of the following directories (I'm using Win XP):
"[Drive]:\Documents and Settings\[User]\Application Data"
"[Drive]:\Documents and Settings\Local Settings\Application Data"
Thanks
-
Great - thanks!
-
I'm wondering how one would go about formating data when using data binding. Lets say I'm binding my Company business object to a TextBlock control:
<TextBlock Text="{Binding CompanyName}" />
What syntax would I use if I wnated the CompanyName property to be displayed in upper case letters (ToUpper())? Or ...
-
I hate to be a bumper here but - I really can't get this to work, nor am I able to find any resources on this.
Is it possible to tile an image?
Thanks
-
The Breaking changes document (for SL 2 Beta 1) specifies the following:
Added a TileMode enumeration to System.Windows.Media, and modified TileBrush.TileMode to use it instead of double.
However - I still can't get an image to tile. Is this still not possible?
Thanks!
-
Yes, the OnPluginError event is handled - and it IS being called each time an error occurs. However, the parameters that is sent to the JS functions seem to be totally undocumented so I have no ide how to use them. The following function works great if load the xaml without the asp:Silverlight control:
function errorHandler(sender, ...
-
Thank you all for your help!
Here's the complete code for the event hadler:
void webClient_OpenReadCompleted(object sender, OpenReadCompletedEventArgs e)
{
StreamResourceInfo resourceInfo = new StreamResourceInfo(e.Result, null);
StreamResourceInfo imageResourceInfo = Application.GetResourceStream(resourceInfo, new ...
-
The new asp:Silverlight control does not seem to be able to report errors that occured in the silverlight runtime, or perhaps I'm missing something.
Here's my JS error handling method:
function onSilverlightError(sender, args)
{
alert(args.errorType);
alert(args.errorMessage);
alert(args.errorCode);
}
If I hook up ...