I've got some custom styles for DataRecordCellArea. It works ok when there is no theme specified for grid. But, If i set Theme="Office2k7Blue" then my style isn't applyed. How could I override some styles from Office2k7Blue theme but leave other styles as it is (some kind of custom Office2k7Blue theme)?
You have probably applied the style implicitly. If it is defined outside the XamDataGrid's resouseced, then it will not be applied when a theme is used. You can find more information in this great article by Andrew Smith about issues with themes and styles:
http://community.infragistics.com/blogs/andrew_smith/archive/2009/12/09/common-style-issues-when-using-the-theme-property.aspx
Thanks, Alex. I'll take a look.