You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
691 B
C#
24 lines
691 B
C#
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));
|
|
|
|
|
|
}
|
|
}
|