Advanced Forum Search Results
-
Hi all I wanted to present an issue that I think could be quite serious for an RIA based on Silverlight. It might not be a Silverlight issue: But I have only been able to reproduce it with my Silverlight Client based app. I'll be happy to repost it elsewhere if Silverlight is not the culprit.
So imagine you have a Silverlight Application. ...
-
Hi all I wanted to present an issue that I think could be quite serious for an RIA based on Silverlight. It might not be a Silverlight issue: But I have only been able to reproduce it with my Silverlight Client based app. I'll be happy to repost it elsewhere if Silverlight is not the culprit.
So imagine you have a Silverlight Application. ...
-
Yes, and good riddance to it!
Maybe in 10 years it'll be extinct, but so might a whole plethora of other things we think are mainstream. I doubt Silverlight alone will be responsible.
-
Absolutely this is a bug. I have seen it too. Your only workaround is to use the associative (Naming) approach you describe. It does limit the ways you can enumerate a Resource Dictionary to almost nil, however.
-
I thought we had been told at Mix08 (e.g. March timeframe) in one of the sessions that SL for Mobile was "a couple of months away". Unfortuantely that's not really what is considered "official word"
-
Actually, the fact that they are unmanaged (eg Win32/COM) binaries doesn't bother me at all. I want to be able to connect to a crashed IE instance with WinDebug and figure out what the heck is going on. A stack trace of managed through unmanaged code would be nice. We are seeing this exception frequently in automated testing and have no ...
-
Okay I just had IE7 blow up on me, and I entered the debugger, and found an exception in npctrl.dll.
However, there's no debug symbols, so I don't really know what's cause this fault. Are there symbols for the Silverlight binaries?
TIA
Kevgor
-
I found in alot of my code that I had to include the xmlns and xmlns:x declaration in the root object of any xmlfragment I wanted to use in CreateFromXaml(...). Especially if you're using "x:Name".
I don't know if that's still a requirement for the 1.0 release but it sure seemed like it was required a few months ...
-
Try adding the namespace attributes to the string you are building up.
e.g.
var checkBox1 = '<Canvas xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x=http://schemas.microsoft.com/winfx/2006/xaml ';
...
kevgor
-
I don't think that version >= 0.8 would work, since there are some changes in the RC that require pre-RC apps to be modified. Things like not using "BLOCKED SCRIPT" in the declaration of event handlers, etc.
Perhaps the Mix samples haven't been upgraded yet?
Kevgor