comparison Messaging/Common/Controls/MessageTile.xaml.cs @ 31:7d9de5746f18

Working version
author adminsh@apollo
date Thu, 22 Mar 2012 08:09:41 +0000
parents 96fdf58e05b4
children
comparison
equal deleted inserted replaced
30:8d574f2d4174 31:7d9de5746f18
1 using System; 1 using System.ComponentModel;
2 using System.ComponentModel;
3 using System.Windows; 2 using System.Windows;
4 using System.Windows.Media;
5 using System.Windows.Media.Imaging; 3 using System.Windows.Media.Imaging;
6 4
7 namespace Common.Controls 5 namespace Common.Controls
8 { 6 {
9 /// <summary> 7 /// <summary>
14 public MessageTile() 12 public MessageTile()
15 { 13 {
16 InitializeComponent(); 14 InitializeComponent();
17 } 15 }
18 16
19 #region Dependency Properties 17 // Dependency Properties
20 18
21 #region DisplayIcon 19 #region DisplayIcon
22 20
23 /// <summary> 21 /// <summary>
24 /// Icon for the tile 22 /// Icon for the tile
72 { 70 {
73 get { return (string) this.GetValue(DisplayTextProperty); } 71 get { return (string) this.GetValue(DisplayTextProperty); }
74 set { this.SetValue(DisplayTextProperty, value); } 72 set { this.SetValue(DisplayTextProperty, value); }
75 } 73 }
76 #endregion 74 #endregion
77
78 #endregion
79 } 75 }
80 } 76 }