We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

DataBoundGrid

Clay, Is there anyway we can make Column Heading as ''Fixed3D'' style. Thanks Satish

1 Reply

AD Administrator Syncfusion Team May 20, 2004 05:43 AM UTC

Unless you have set grid.ThemesEnabled = true and are using XP OS, the grid draws headers raised by default. If you are on XP, try setting grid.ThemesEnabled = false to see if that does what you want. You can control the appearance of a cell (Raised, Flat, Sunken) by setting GridStyleInfo.CallAppearance. Here is code to change this property for all header cells. this.gridDataBoundGrid1.BaseStylesMap["Header"].StyleInfo.CellAppearance = GridCellAppearance.Sunken; this.gridDataBoundGrid1.Refresh(); If you need some other look on the cell border, you can draw the border yourself using the DrawCellFrameAppearance. In the handler draw what you want, and then set e.Cancel = true to prevent the grid from doing its default drawing. You can see sample usage in Grid\Samples\In Depth\CustomBorders.

Loader.
Live Chat Icon For mobile
Up arrow icon