init
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
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()
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user