Files
DP44/Common/DTS.Common/.svn/pristine/e6/e6ce00091c930ef5812447540b8d0eae552763c2.svn-base

20 lines
527 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using DTS.Common.Events;
using Prism.Ioc;
using Prism.Events;
namespace DTS.Common
{
public partial class CommonStyles
{
public void ToolTipEventHandler(object sender, System.Windows.Controls.ToolTipEventArgs e)
{
e.Handled = true;
var eventAggregator = ContainerLocator.Container.Resolve<IEventAggregator>();
eventAggregator.GetEvent<HelpTextEvent>().Publish(new HelpTextEventArg()
{ Sender = sender, E = e });
}
}
}