Search Results

0
votes
2answers
820 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 …
0
votes
2answers
714 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 …
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 …