Hello, All.
1. UltraGrid Row, MouseClick . Call Event AfterRowActivate Event
2. But, This Select Row , more MouseClick, not Call AfterRowActivateEvent
(Select / Unselect)
How to Single RowClick Event?
or UltraGrid Click Event Action Only Row? (Click Event is Call GridEmpty Panel , Grid Header )
Help me
Try this one: https://ko.infragistics.com/help/winforms/wingrid-determining-which-row-the-user-clickedThat's for row. If you look at the Table of contents on the left, there are similar articles for Column and Cell.
Dead link.
Hello ,
MouseUp event will occurs every time when mouse button was released, even if it is a click or double click, in this even you will not be able determine if the user wants to double click or single click the component. MouseClick event occurs when mouse was clicked, but you cannot double click without single click. So you should postponed the click event to occur only if double click event doesn’t occur. You could use BackGroundWorker in order “cancel mouse click ” if double click occur, please see attached sample, so on single click with left mouse button PopUp is shown, single click with right button displays context menu, double click with left button opens new form. I hope that this will helps you.
Thank you for using Infragistics Components.
Little correction,
At the same time it should not disturb the current working of context menu opening and double click feature.
Hi,
When we implemented Mouse_Up event,
Problem which we are facing are:
1) Right click for Context menu open is not working, instead the function written inside Mouse_Up event is getting called twice.
We just want one event which will suffice our need to do some specific operation related to selected row in the click without hindering existing event like context menu opening etc..
My requirement is as below:
we have one grid showing multiple records.
Grid will always have context menu option.
our need is to show one pop up whenever user click on the row depending upon the condition of some respective row column value.
also we do have Double Click event of the grid implemented doing some thing when user double click on the row.
Just need on event for single click on the row that too also mouse left click, so that moment user click on the row our popup should be shown.
At the same time it should disturb the current working of context menu opening and double click feature.
Your assistance on the same would be much appreciated.