comparison 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
comparison
equal deleted inserted replaced
26:045dac571339 27:96fdf58e05b4
44 /// </summary> 44 /// </summary>
45 public static readonly DependencyProperty DisplayCountProperty = 45 public static readonly DependencyProperty DisplayCountProperty =
46 DependencyProperty.Register("DisplayCount", 46 DependencyProperty.Register("DisplayCount",
47 typeof(int), 47 typeof(int),
48 typeof(MessageTile), 48 typeof(MessageTile),
49 new PropertyMetadata(0)); 49 new UIPropertyMetadata(0));
50 50
51 [Bindable(true)]
52 public int DisplayCount 51 public int DisplayCount
53 { 52 {
54 get { return (int) this.GetValue(DisplayCountProperty); } 53 get { return (int) this.GetValue(DisplayCountProperty); }
55 set { this.SetValue(DisplayCountProperty, value); } 54 set { this.SetValue(DisplayCountProperty, value); }
56 } 55 }
56
57 #endregion 57 #endregion
58 58
59 #region DisplayText 59 #region DisplayText
60 60
61 /// <summary> 61 /// <summary>