Advanced Forum Search Results
-
That would be nice!
-
[quote user="Alan Cobb"]
Adobe's open-source "Text Layout Framework" is indeed interesting. Something similar on SL would be good.
See: http://labs.adobe.com/technologies/textlayout/
Alan Cobb
[/quote]
I took a quick look, and it looks good(although in beta as well).
-
I agree, let's get real!
-
[quote user="StefanOlson"]When you click the reply button, the rightmost toolbar button allows you to insert source code. It will format it for you so that it looks okay.[/quote]
Thanks!
-
Stefan, how did you post your code so cleanly?
-
WOW, that came out UGLY! Here's one more try.namespace Silverlight4Application
{
public class testclass
{public int myint { get; set; }
public string name { get; set; }public string city { get; set; }
public string state { get; set; }public string GetCityState()
{return city + ", " + state;
}
}
public partial ...
-
Stefan, you're CORRECT!
You have to manually add the DLL from the client section, and it works. My test was a bit different because I want to create dynamic objects(ala javascript) from JSON on the fly, so I tested ExpandoObject, and some standard reflection(see below).namespace Silverlight4Application{ public class ...
-
[quote user="StefanOlson"]
samcov,
The dynamic support works fine in browser. Unfortunately, however, it doesn't appear to work with data binding, in or out of browser!
[/quote]
No it doesn't, you can't add a reference to the dll that supplies that support in the browser.
Did you actually try it? If so, can ...
-
Alan,
I just tried the dynamic type, and while you can declare it, it doesn't work, giving a message about a missing dll(Microsoft.CSharp.dll).
Upon further investigation, you can only use it in OOB situations... Bummer!
-
[quote user="Alan Cobb"]
I notice that at least of a bit of the "dynamic stuff" will apparently be available in SL4. Tim Heuer's "COM interop" SL4 snippet uses the "dynamic" keyword of C# 4.0: http://timheuer.com/blog/#com
BTW: That COM interop feature sounds pretty open-ended. If you ...