Hi,
I have a problem with GridViewCell, I think it is also the same with GridViewRow. I use silverlight controls 2011 Q1.
In my project, the code below:
When I click a cell in the gridview, the messbox is showed. but when I cilck (drag) the scrollViewer in the gridview, the messagebox also be showed. I do not need it. How to solve it. thanks!
I have a problem with GridViewCell, I think it is also the same with GridViewRow. I use silverlight controls 2011 Q1.
In my project, the code below:
this
.RADGRIDWIEW.AddHandler(GridViewCell.MouseLeftButtonUpEvent,
new
MouseButtonEventHandler(Cell_Click),
true
);
private
void
Cell_Click(
object
sender, MouseButtonEventArgs e)
{
MessageBox.Show(
"xxxxx"
).
}
When I click a cell in the gridview, the messbox is showed. but when I cilck (drag) the scrollViewer in the gridview, the messagebox also be showed. I do not need it. How to solve it. thanks!