Advanced Forum Search Results
-
Thanks - that'll work for us.
-
The textbox may not show the last character of text (esp thin characters such as "i").
Steps to repro:
1. Create a new SL2 project in blend
2. Replace the LayoutRoot with
<Grid x:Name="LayoutRoot" Background="White">
...
-
We're also seeing this (firefox only)
Leaving lots of event handlers lying around can gradually degrade performance (as you'll have more events being fired that you'll have to ignore).
It would be nice if GetInstanceEventDelegate(string eventName) checked that the delegate was still in the table before trying to use it.
-
The workarounds we've found:
1. Set the initial visibility of the canvas to hide to Visible - set the visibility to Collapsed in the first SizeChanged event
2. Explicitly set the Visibility of the control in the canvas to Visible (even though it already is visible)
3. Use Grid or StackPanel as the container (these both work)
-
Further investigation shows it's anything derived from control.
UserControls, Buttons, Textboxes none of them work.
You're right about TextBlock working.
I think that this is pretty serious.
-
Thanks. I guess that's answered.
-
Symptom:
A canvas has visibility changed from Visibilty.Collapsed to Visibilty.Visible but controls inside the canvas don't appear until mouse hovers over them.
Steps to repro:
1. Create a Silverlight 2 app
2. Change the Page XAML to look like this (either manually or in Blend)
<UserControl ...
-
If user navigates away from a page with a silverlight 1.1 control which is waiting for an async web service to return can cause IE to crash.
We're getting this in more complex apps but the fairly simple case below seems to repro this.
Steps to repro:
1. Create a simple web service that can be called by Silverlight ...
-
Umm... I'm not sure it did answer the question, as I still couldn't open any samples from the web that were created in VS.
Anyway - I went out tonight, bought a new laptop, installed on that and everything works now.
The only differences I can see between the weekend and now are:
1. Different hardware (but similar spec) - and ...
-
Hi Nick,
Yes, I recognize that I'm creating a 1.1 project and I do have the Alpha tools installed.
But I think I've found a workaround.
I create the project in expression blend 2 (Silverlight Application (.Net Orcas)) and then add the project to my solution in Orcas (right clicking on solution, Add -> Existing project). ...