Hi,
I have a problem with GridViewCell property of isEnable. I want to set some GridViewCell the edition attribute . I use silverlight controls v2.0.50727 and version is 2011.1.315.1040.
In my project, the code below:
dataGrid1.RowLoaded += new EventHandler<RowLoadedEventArgs>(dataGrid1_RowLoaded);
void dataGrid1_RowLoaded(object sender, RowLoadedEventArgs e)
{
e.Row.Cells[0].IsEnabled = false;
}
But when I cilck (drag) the horizontalscrollViewer in the gridview,the other Cells cannot be edited and Cells[0] can edit
. is it bug?. How to solve it. thanks!
I have a problem with GridViewCell property of isEnable. I want to set some GridViewCell the edition attribute . I use silverlight controls v2.0.50727 and version is 2011.1.315.1040.
In my project, the code below:
dataGrid1.RowLoaded += new EventHandler<RowLoadedEventArgs>(dataGrid1_RowLoaded);
void dataGrid1_RowLoaded(object sender, RowLoadedEventArgs e)
{
e.Row.Cells[0].IsEnabled = false;
}
But when I cilck (drag) the horizontalscrollViewer in the gridview,the other Cells cannot be edited and Cells[0] can edit
. is it bug?. How to solve it. thanks!