Advanced Forum Search Results
-
The DataField control does not apply VerticalContentAlignment to it's child? Is this the intended behavior? Is there a workaround?
Below, the DataField is in a * sized Grid row.
<Grid>
<RowDefinitions... />
<DataField Grid.Row="2" VerticalContentAlignment="Stretch">
...
-
oberdan, can you please clarify above?
xap is included in web app as content, and do not copy.
I tried putting this as a pre-build step in my Web App project:
attrib -r "$(ProjectDir)\ClientBin\MySilverlight.xap"
I am still getting the error:
error MSB3021: Unable to copy file "ClientBin\MySilverlight.xap" to ...
-
RC0 Removed the Handled property on some mouse events, so anyone can handle them. This does the trick.
-
Using reflection emit and the technique described in this post (with sample code):
http://www.xtremedotnettalk.com/showthread.php?t=96952
I was able to invoke an instance method on a class.
The only change necessary is the constructor of the DynamicMethod. The sample code uses this constructor, which is not allowed in Silverlight (for ...
-
This didn't get a mention in any RC0 release notes.
-
ScriptEngine (which was in Microsoft.Scripting.Core I believe).
Which had runtime dependencies on:
Microsoft.JScript.Compiler
Microsoft.JScript.Runtime
-
I installed the RC0 SDK, the assemblies are not there anymore.
-
What happened to the dlr assemblies that shipped with SLB2?
No Microsoft.JScript.Compiler... and son on...
-
See http://silverlight.net/forums/t/31594.aspx
-
I noticed SL RC0 does not have a handled property for MouseEventArgs, this could fix the above scenario. I will test and report the results.