This question is locked. New answers and comments are not allowed.
Hello Friends !
I m working in silverlight 4.0 i M adding New DLL july 14 2010.So My Gridview Row Height increse automaticaly.
i m trying e.row.height but its not working.How to become my gridview' row height become small???????
I m working in silverlight 4.0 i M adding New DLL july 14 2010.So My Gridview Row Height increse automaticaly.
i m trying e.row.height but its not working.How to become my gridview' row height become small???????
e.g.
RowLoaded +=
new EventHandler<RowLoadedEventArgs>(CrmGridView_RowLoaded);
private
void CrmGridView_RowLoaded(object sender, RowLoadedEventArgs e)
{
e.Row.Height= 17;--------------------not working
e.Row.MinHeight= 17;;--------------------not working
e.Row.ActualHeight= 17;;--------------------not working
}