using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; namespace SlnMesnac.WPF.MessageTips { public class MessageItem : ListBoxItem { public MessageBoxImage MessageType { get { return (MessageBoxImage)GetValue(MessageTypeProperty); } set { SetValue(MessageTypeProperty, value); } } public static readonly DependencyProperty MessageTypeProperty = DependencyProperty.Register("MessageType", typeof(MessageBoxImage), typeof(MessageItem), new PropertyMetadata(MessageBoxImage.Information)); } }