Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
225
RecordActivated event on mouseenter instead of onclick
posted

Is there any way to get the RecordActivated event to fire on a mouseover instead of when it is clicked?

 

I want a popup to appear when i mouse over the row instead of when i click on it with information about the row i am moused over.

 

Right now, i have code like this

 

<igDP:XamDataPresenter 

            x:Name="DataPresenter1"

            DataSource="{Binding Path=Data}"

            RecordActivated="DataPresenter1_RecordActivated">

 

where the event gets fired once i click on a row and everything works fine.  but I would like it to handle my popup on mouse enter instead.  any ideas?  is it also possible to get my mouse location and have the popup appear next to my mouse?