Advanced Forum Search Results
-
Audio recording capability: http://silverlight.net/forums/p/50596/281675.aspx
-
Looking forward for this feature in the upcoming version of Silverlight.
-
Thanks Jonathan!
-
Hi Jonathan,
I faced this on the regular button control. I am able to handle all the other keys [e.Key] except the Enter and Space keys. Not sure if something was wrong specific to my PC or environment.
-
I am facing the same problem in SL3. Both KeyDown and KeyUp events are not getting fired for both Enter and Space keys.
-
Is it by design? Is anyone else facing the same? Is there a workaround to get over it?
-
Has anyone built any navigation system that supports keyboard keys.
-
This works. However, if the width/height is large (eg. 1000px) you would face abnormal behaviour. You get unwanted whitespaces in your page.
A better solution for this can be found at http://www.jeffblankenburg.com/2008/04/how-about-some-code-simple-resizing-in.aspx
-
A good solution for this can be found at http://www.jeffblankenburg.com/2008/04/how-about-some-code-simple-resizing-in.aspx
-
If you are dynamically placing a DataGrid inside a TabControl, just before adding the DataGrid to the TabControl, try applying the style to the DataGrid. I works!
Here's a sample code:DataGrid dg = new DataGrid();
.....
.....
ImplicitStyleManager.SetApplyMode(dg, ImplicitStylesApplyMode.Auto);
ImplicitStyleManager.Apply(dg);
TabItem ...