This question is locked. New answers and comments are not allowed.
ok, application wide i have set windows 7 as the theme. is it true that the windows 7 theme on the radgridview has the cell background white with the foreground white as well? Say it aint true and I have messed up.....
I have had no luck getting the foreground of the cell to any color but white. I found the below information and it still did not help:
adn then on the dataloaded event:
The code is being executed.
Any help?
Richard
I have had no luck getting the foreground of the cell to any color but white. I found the below information and it still did not help:
<StackPanel.Resources>
<Style x:Key="GridViewCellStyle"
TargetType="telerik:GridViewCell">
<Setter Property="Foreground"
Value="DarkSlateGray" />
</Style>
</StackPanel.Resources>
adn then on the dataloaded event:
private void rgvEngines_DataLoaded(object sender, EventArgs e)
{
foreach (var col in rgvEngines.Columns)
{
col.CellStyle = (
Style)this.Resources["GridViewCellStyle"];
}
}
The code is being executed.
Any help?
Richard