Search Results

1
vote
3answers
263 views

Lazy initialization causing System.ArgumentException in Silverlight 2.0 beta

Hello! I've got the following example running in a simple Silverlight page: public Page() { InitializeComponent(); InitializeOther(); } private DoubleCollection dashes; …
0
votes
2answers
783 views

Refresh Silverlight UserControl via XAML

Hello! I'm using the lastest version of Silverlight 2.0 within Visual Studio 2008. I have a simple Silverlight UserControl with the following code: public partial class Si …
1
vote

Lazy initialization causing System.ArgumentException in Silverlight 2.0 beta

Thank you for your answers and comments. I can run exactly the same code in a WPF application and it does not fail. For me, this is a clear indication that it is a Silverlight bug. I don't …
0
votes

Refresh Silverlight UserControl via XAML

The solution was two-fold. Firstly to make changes in the LayoutUpdated event rather than the Loaded event and secondly to subscribe to the PropertyChangedCallback of the PropertyMetadata. Here's t …