How can i assign UltraButton to UltraGrid Cell
you can use the following code to enable buttons for all cells of a column
this.customersUltraGrid.DisplayLayout.Bands[0].Columns[0].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
Then, there's a ClickCellButton event that you can handle
Just a quick question about the button style.. I am developing a touch screen app, you think that buttons should be activated with the finger?
Hi,
I'm, not an expert on touch-screen systems. But I assume touching the screen at a certain point simply sends a MouseDown/Click/MouseUp notification to the control. So it should work.