Silverlight 2.0 - databinding a domain object to a UserControl - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T01:30:47Zhttp://stackoverflow.com/feeds/question/328906http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/328906/silverlight-2-0-databinding-a-domain-object-to-a-usercontrol1Silverlight 2.0 - databinding a domain object to a UserControlAnthony2008-11-30T14:37:47Z2008-11-30T16:12:57Z
<p>I am starting out with Silverlight. I want to display a list of messages on the UI, but the databinding isn't working for me.</p>
<p>I have a Message class: </p>
<pre><code>public class Message
{
public string Text { get; set; }
...
}
</code></pre>
<p>I have the message display Silverlight User control with a Message dependency property:</p>
<pre><code>public partial class MessageDisplay : UserControl
{
public static readonly DependencyProperty MessageProperty =
DependencyProperty.Register("Message", typeof(Message),
typeof(MessageDisplay), null);
public MessageDisplay()
{
InitializeComponent();
}
public Message Message
{
get
{
return (Message)this.GetValue(MessageProperty);
}
set
{
this.SetValue(MessageProperty, value);
this.DisplayMessage(value);
}
}
private void DisplayMessage(Message message)
{
if (message == null)
{
this.MessageDisplayText.Text = string.Empty;
}
else
{
this.MessageDisplayText.Text = message.Text;
}
}
}
</code></pre>
<p>}</p>
<p>Then in the main control xaml I have</p>
<pre><code> <ListBox x:Name="MessagesList" Style="{StaticResource MessagesListBoxStyle}">
<ListBox.ItemTemplate>
<DataTemplate>
<Silverbox:MessageDisplay Message="{Binding}"></Silverbox:MessageDisplay>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox
</code></pre>
<p>And I bind in the control.xaml.cs code: </p>
<pre><code> this.MessagesList.SelectedIndex = -1;
this.MessagesList.ItemsSource = this.messages;
</code></pre>
<p>Databinding gives no error, and it seems that there are the right number of items in the list, but a breakpoint in MessageDisplay's Message property settor is never hit, and the message is never displayed properly.</p>
<p>What have I missed?</p>
http://stackoverflow.com/questions/328906/silverlight-2-0-databinding-a-domain-object-to-a-usercontrol/329010#3290102Answer by Bryant for Silverlight 2.0 - databinding a domain object to a UserControlBryant2008-11-30T16:12:57Z2008-11-30T16:12:57Z<p>Your Message property is probably being set by the databinding which is bypassing your actual Message property (not the dependency one). To fix this add a PropertyChangedCallback on that property.</p>
<pre><code>public static readonly DependencyProperty MessageProperty =
DependencyProperty.Register("Message", typeof(Message), typeof(MessageDisplay),
new PropertyMetadata(
new PropertyChangedCallback(MessageDisplay.MessagePropertyChanged));
public static void MessagePropertyChanged(DependencyObject obj, DependecyPropertyChangedEventArgs e)
{
((MessageDisplay)obj).Message = (Message)e.NewValue;
}
</code></pre>
<ol>
<li><a href="http://msdn.microsoft.com/en-us/library/ms557327(VS.95).aspx" rel="nofollow">PropertyMetadata</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.windows.propertychangedcallback(VS.95).aspx" rel="nofollow">PropertyChangedCallback</a></li>
</ol>