33 lines
752 B
C#
33 lines
752 B
C#
using System.Windows;
|
|
using Microsoft.Practices.Prism.Events;
|
|
using System.Windows.Media;
|
|
using System.Windows.Controls;
|
|
|
|
namespace DTS.Common.Events
|
|
{
|
|
/// <summary>
|
|
/// Progress bar event
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// notification event for progress bars
|
|
/// </remarks>
|
|
public class HelpTextEvent : CompositePresentationEvent<HelpTextEventArg> { }
|
|
|
|
public class HelpTextEventArg
|
|
{
|
|
public object Sender { get; set; }
|
|
public ToolTipEventArgs E { get; set; }
|
|
|
|
public HelpTextEventArg(object sender, ToolTipEventArgs e)
|
|
{
|
|
Sender = sender;
|
|
E = e;
|
|
}
|
|
|
|
public HelpTextEventArg()
|
|
{
|
|
}
|
|
}
|
|
|
|
}
|