Hi
Brent,
Sorry for the delay
in getting back to you.
We
have analyzed your query and you can customize the Column appearance in the
GroupDropArea by using the following code snippet.
Code
snippet[C#]:
void datagrid_Loaded(object sender, RoutedEventArgs
e)
{
var model = FindDescendant(datagrid, typeof(GridDataGroupDropAreaGridImpl))
as GridDataGroupDropAreaGridImpl;
if (model != null)
model.QueryCellInfo += new GridQueryCellInfoEventHandler(model_QueryCellInfo);
}
void
model_QueryCellInfo(object sender, GridQueryCellInfoEventArgs e)
{
if (e.Style.CellType == "SortableHeaderCell")
{
e.Style.Background = Brushes.Cyan;
e.Style.Foreground = Brushes.Red;
}
}
|
Regarding
GroupDropArea Height Related Query: We have tested the reported issue in
different scenario but we are unable to reproduce the issue. Could you please
check the below sample.
Sample: SyncGDC.zip
Please
let us know if you have any queries.
Regards,
Gobinath A.