diff Messaging/Common/Controls/MessageTile.xaml.cs @ 27:96fdf58e05b4

Server working with sockets and rabbitmq
author adminsh@apollo
date Wed, 21 Mar 2012 19:00:59 +0000
parents 045dac571339
children 7d9de5746f18
line wrap: on
line diff
--- a/Messaging/Common/Controls/MessageTile.xaml.cs	Wed Mar 21 15:39:53 2012 +0000
+++ b/Messaging/Common/Controls/MessageTile.xaml.cs	Wed Mar 21 19:00:59 2012 +0000
@@ -46,14 +46,14 @@
             DependencyProperty.Register("DisplayCount",
                 typeof(int),
                 typeof(MessageTile),
-                new PropertyMetadata(0));
+                new UIPropertyMetadata(0));
 
-        [Bindable(true)]
         public int DisplayCount
         {
             get { return (int) this.GetValue(DisplayCountProperty); }
             set { this.SetValue(DisplayCountProperty, value); }
         }
+
         #endregion
 
         #region DisplayText