This question is locked. New answers and comments are not allowed.
I am using RadGridView I want to Dynamic Modify the rowstyle such as FontWeight of rowstyle. when the databinding to RadGridView .I set all rows FontWeight to FontWeights.Normal. when I edit the selectitem i want set the FontWeight of selectrow to FontWeights.Bold.
How can i to do this?
private
void
radButton1_Click(
object
sender, EventArgs e)
{
RadGridView .SelectRow.RowStyle=new Setter(GridViewRow.FontWeightProperty, FontWeights.Bold);}
I can Get the SelectItem but how to Get the SelectRow?