Dear support,
Is there a way to put a shadow under the border ?
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.Override.BorderStyleRow = UIElementBorderStyle.None; e.Layout.Override.BorderStyleCell = UIElementBorderStyle.Rounded4Thick; }
Thanks in advance - Lello
See link: http://www.pattilandia.it/public/shadow.png
First I created a little space under the cell...
e.Layout.Override.CellSpacing = 5;
Then I created a filter. This is the result: http://www.pattilandia.it/public/shadow3.png
There's no built-in way, but a DrawFilter is a good idea. :)