Search Results

1
vote
3answers
264 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; …
2
votes
1answer
1k views

Initialized event of WPF UserControl not firing.

Hello, I've got a very simple WPF UserControl that looks like this: namespace MyUserControl { /// <summary> /// Interaction logic for UserControl1.xaml /// </ …
1
vote
1answer
80 views

new .net floating point types for x64?

Hello! Does anybody know if there are any? I would be interested in a .net floating point type with the range of a double (or greater) combined with the precision of a decimal (or greater). …
0
votes
2answers
695 views

Refresh WPF UserControl via XAML

Hello! I'm using WPF within Visual Studio 2008. I have a simple WPF UserControl with the following code: public partial class UserControl1 : UserControl { public Use …
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 …